aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Todo/TodoLabel.cs
blob: 7753ade1138c5d856153c95adfc6c9bd9a0360ae (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.GreatOffice.Api.Data.Database;

public class TodoLabel : BaseWithOwner
{
	public string Name { get; set; }
	public string Color { get; set; }
	public Todo Todo { get; set; }
}