12 lines
283 B
C#
12 lines
283 B
C#
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; }
|
|
}
|
|
} |