SharpRSS/SharpSyndicationApi.Contracts/Category/CategoryRequest.cs

9 lines
225 B
C#
Raw Normal View History

2023-09-03 00:13:02 +02:00
namespace SharpSyndicationApi.Contracts.Category
{
public record CategoryRequest
{
public string Name { get; set; }
public string HexColor { get; set; }
public string Icon { get; set; }
}
}