35 lines
865 B
C#
35 lines
865 B
C#
using System;
|
|
using System.Data.Entity;
|
|
using System.Linq;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SHERPA.BBM.DatabaseModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
/// <summary>
|
|
/// Tabella Tag2Item (listino)
|
|
/// </summary>
|
|
[Table("Tag2Item")]
|
|
public class TagItemModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Column("ItemId")]
|
|
public int ItemId { get; set; }
|
|
|
|
[Column("TagId")]
|
|
public int TagId { get; set; }
|
|
|
|
[ForeignKey("ItemId")]
|
|
public virtual ItemsModel ItemsNav { get; set; }
|
|
|
|
[ForeignKey("TagId")]
|
|
public virtual TagModel TagsNav { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |