ttrss-co-pilot/Configuration.cs

22 lines
727 B
C#
Raw Permalink 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 02:52:26 -04:00
public string PodcastTitlePrefix { get; set; }
public string OnDoneCopy { get; set; }
public string WorkingDirectory { get; set; } = "./working/";
public string ChatScript { get; set; }
2023-11-12 16:08:13 -05:00
public string UserAgent { get; set; }
2023-04-05 02:52:26 -04:00
public IEnumerable<FeedAction> feedActions { get; set; }
2023-04-05 01:44:46 -04:00
public class FeedAction
{
2023-04-05 02:52:26 -04:00
public string triggerlabelCaption { get; set; }
2023-04-05 01:44:46 -04:00
public string command { get; set; }
}
2023-04-02 23:32:03 -04:00
}
}