aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Data/Database/Project.cs
blob: 99c6e7f6a98270b9d230a14e140411152342d615 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace IOL.GreatOffice.Api.Data.Database;

public class Project : BaseWithOwner
{
    public string Name { get; set; }
    public string Description { get; set; }
    public DateTime? Start { get; set; }
    public DateTime? Stop { get; set; }
    public List<Customer> Customers { get; set; }
    public List<User> Owners { get; set; }
    public List<ProjectLabel> Labels { get; set; }
}