ttrss-co-pilot/ttrss/datastructures/Category.cs

12 lines
283 B
C#
Raw Normal View History

2023-04-03 14:03:31 -04:00
using System.Collections.Generic;
namespace ttrss_co_client.ttrss.datastructures
{
public class Category
{
public int id { get; set; }
public string title { get; set; }
public int unread { get; set; }
public int order_id { get; set; }
}
}