blob: 8113199129e40f99df0ddcb577d40c131ec4f39d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace IOL.GreatOffice.Api.Models.Database;
public class ProjectLabel : BaseWithOwner
{
public string Value { get; set; }
public string Color { get; set; }
public Project Project { get; set; }
}
|