SharpRSS/SharpSyndicationApi/Models/Category.cs
2023-07-16 20:10:02 +02:00

13 lines
310 B
C#

using System;
namespace SharpSyndicationApi.Models
{
public class Category
{
public string Name { get; set; }
public string Id { get; set; }
public string Icon { get; set; }
public string HexColor { get; set; }
public DateTime CreationDate { get; set; }
}
}