PlatonusSchedule/Platonus.API/DataModels/LoginResponse.cs
2023-09-02 18:08:26 +06:00

10 lines
245 B
C#

namespace Platonus.API.DataModels;
class LoginResponse
{
/// session_id
public string? sid { get; set; }
public string? auth_token { get; set; }
/// should be "success"
public string? login_status { get; set; }
}