ttrss-co-pilot/ttrss/messages/LoginResponseContent.cs

10 lines
277 B
C#
Raw Permalink Normal View History

namespace ttrss_co_client.ttrss.messages
{
public class LoginResponseContent
{
public string session_id { get; set; }
public Configuration config { get; set; }
public int? api_level { get; set; }
public string error { get; set; }
}
}