EFB/Models/JSON/Login.cs
2022-02-28 21:53:28 +00:00

15 lines
301 B
C#

using Newtonsoft.Json;
namespace EFB.Models.JSON
{
public class Login
{
[JsonProperty]
public string grant_type { get; set; }
[JsonProperty]
public string client_id { get; set; }
[JsonProperty]
public string client_secret { get; set; }
}
}