using System; using System.Collections.Generic; namespace IntegrationTests.Models { public partial class Status { public Status() { this.Projects = new List(); } public System.Guid Id { get; set; } public string Name { get; set; } public string Color { get; set; } public bool IsSystem { get; set; } public bool Probability100 { get; set; } public virtual ICollection Projects { get; set; } } }