using System; using System.Collections.Generic; namespace IntegrationTests.Models { public partial class View { public View() { this.Company2View = new List(); this.Team2View = new List(); this.User2View = new List(); this.View2CostCenter = new List(); } public System.Guid Id { get; set; } public string Name { get; set; } public virtual ICollection Company2View { get; set; } public virtual ICollection Team2View { get; set; } public virtual ICollection User2View { get; set; } public virtual ICollection View2CostCenter { get; set; } } }