ttrss-co-pilot/Configuration.cs

18 lines
502 B
C#

using System.Collections.Generic;
namespace ttrss_co_client
{
public class Configuration
{
public Uri BaseURI { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string CopilotDoneCaption { get; set; }
public IEnumerable<FeedAction> feedActions{get;set;}
public class FeedAction
{
public string feedurl { get; set; }
public string command { get; set; }
}
}
}