SharpRSS/SharpSyndicationApi/Models/Category.cs

13 lines
310 B
C#
Raw Normal View History

2023-07-16 20:10:02 +02:00
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; }
}
}