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

public class Project : BaseWithOwner
{
    public Project() { }

    public Project(LoggedInUserModel loggedInUserModel) : base(loggedInUserModel) { }
    public string Name { get; set; }
    public string Description { get; set; }
    public DateTime? Start { get; set; }
    public DateTime? Stop { get; set; }
    public ICollection<Customer> Customers { get; set; }
    public ICollection<ProjectMember> Members { get; set; }
    public ICollection<ProjectLabel> Labels { get; set; }
}