21 lines
511 B
C#
21 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Status
|
|
{
|
|
public Status()
|
|
{
|
|
this.Projects = new List<Project>();
|
|
}
|
|
|
|
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<Project> Projects { get; set; }
|
|
}
|
|
}
|