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

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