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 { // // This is here so CodeMaid doesn't reorganize this document // /// /// Tabella Tag2Item (listino) /// [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 } }