ttrss-co-pilot/Configuration.cs

11 lines
238 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; }
}
}