using System; using System.Collections.Generic; namespace IntegrationTests.Models { public partial class Project { public Project() { this.Contact2Project = new List(); this.ProjectAccesses = new List(); this.Scenarios = new List(); this.Team2Project = new List(); } public System.Guid Id { get; set; } public Nullable CompanyId { get; set; } public Nullable ClientId { get; set; } public System.Guid TypeId { get; set; } public System.Guid StatusId { get; set; } public string Name { get; set; } public string ProjectNumber { get; set; } public string Color { get; set; } public string Details { get; set; } public int Priority { get; set; } public decimal Probability { get; set; } public bool IsRevenueGenerating { get; set; } public virtual Client Client { get; set; } public virtual Company Company { get; set; } public virtual ICollection Contact2Project { get; set; } public virtual ICollection ProjectAccesses { get; set; } public virtual ICollection Scenarios { get; set; } public virtual Status Status { get; set; } public virtual Type Type { get; set; } public virtual ICollection Team2Project { get; set; } } }