ttrss-co-pilot/Configuration.cs

18 lines
502 B
C#
Raw Normal View History

2023-04-02 23:32:03 -04:00
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; }
2023-04-05 01:44:46 -04:00
public string CopilotDoneCaption { get; set; }
public IEnumerable<FeedAction> feedActions{get;set;}
public class FeedAction
{
public string feedurl { get; set; }
public string command { get; set; }
}
2023-04-02 23:32:03 -04:00
}
}