using System; using System.Collections.Generic; namespace rockfishCore.Models { public partial class Site { public Site() { Purchase = new HashSet(); LegacyV7=true; DbId="v7_no_dbid"; } public long Id { get; set; } public long CustomerId { get; set; } public string Name { get; set; } public string Country { get; set; } public string StateProvince { get; set; } public bool Trial { get; set; } public long? TrialStartDate { get; set; } public string TrialNotes { get; set; } public bool Networked { get; set; } public bool Hosted { get; set; } public string HostName { get; set; } public long? HostingStartDate { get; set; } public long? HostingEndDate { get; set; } public string DbType { get; set; } public string ServerOs { get; set; } public string ServerBits { get; set; } public string Notes { get; set; } //raven new public bool LegacyV7 { get; set; } public string DbId { get; set; } // public virtual ICollection Incident { get; set; } public virtual ICollection Purchase { get; set; } // public virtual ICollection TrialNavigation { get; set; } public virtual Customer Customer { get; set; } } }