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 feedActions{get;set;} public class FeedAction { public string feedurl { get; set; } public string command { get; set; } } } }