Files
EmptyMauiApp/MauiApp/Core/RestClient/IntegryApi/Dto/AuthRefreshTokenRequestDto.cs
2023-10-18 19:02:51 +02:00

12 lines
297 B
C#

using System.Text.Json.Serialization;
namespace MauiApp.Core.RestClient.IntegryApi.Dto;
public class AuthRefreshTokenRequestDto
{
[JsonPropertyName("refreshToken")]
public string RefreshToken { get; set; }
[JsonPropertyName("deviceId")]
public string DeviceId { get; set; }
}