21 lines
484 B
C#
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; }
|
|
} |