EFB/Models/JSON/Login.cs

15 lines
301 B
C#
Raw Permalink Normal View History

2021-10-31 18:58:30 +00:00
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; }
2022-02-28 21:53:28 +00:00
2021-10-31 18:58:30 +00:00
}
}