aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Project/ProjectLabel.cs
blob: 0e1dc5d10c7178047a7a0fcd87be53b1d4800664 (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.GreatOffice.Api.Data.Database;

public class ProjectLabel : BaseWithOwner
{
	public string Value { get; set; }
	public string Color { get; set; }
	public Project Project { get; set; }
}