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

9 lines
251 B
C#

namespace MauiApp.Core.RestClient.IntegryApi.Dto;
public class LoginRequestDto
{
public String username { get; set; }
public String password { get; set; }
public String ProfileDb { get; set; }
public String deviceId { get; set; }
}