Y2S2-Syski/syski_api/uk.co.syski.api/Models/UserRefreshTokenDTO.cs

13 lines
213 B
C#
Raw Permalink Normal View History

2020-06-09 20:02:14 +00:00
using Newtonsoft.Json;
namespace Syski.API.Models
{
public class UserRefreshTokenDTO
{
[JsonProperty(PropertyName = "refresh_token")]
public string RefreshToken { get; set; }
}
}