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

21 lines
484 B
C#

using System.Text.Json.Serialization;
namespace MauiApp.Core.RestClient.IntegryApi.Dto;
public class UserDto
{
[JsonPropertyName("username")]
public string UserName { get; set; }
[JsonPropertyName("email")]
public string? Email { get; set; }
[JsonPropertyName("fullname")]
public string FullName { get; set; }
[JsonPropertyName("attivo")]
public bool? Attivo { get; set; }
[JsonPropertyName("type")]
public string? Type { get; set; }
}