SharpRSS/SharpSyndicationApi.Contracts/Category/CategoryRequest.cs
2023-09-03 00:13:02 +02:00

9 lines
225 B
C#

namespace SharpSyndicationApi.Contracts.Category
{
public record CategoryRequest
{
public string Name { get; set; }
public string HexColor { get; set; }
public string Icon { get; set; }
}
}