13 lines
343 B
C#
13 lines
343 B
C#
using System.Collections.Generic;
|
|
using System.Net.Http.Json;
|
|
|
|
namespace ttrss_co_client.ttrss.datastructures
|
|
{
|
|
public class Configuration
|
|
{
|
|
public string icons_dir { get; set; }
|
|
public string icons_url { get; set; }
|
|
public bool daemon_is_running { get; set; }
|
|
public int num_feeds { get; set; }
|
|
}
|
|
} |