15 lines
402 B
C#
15 lines
402 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace MauiApp.Core.Authentication.Dto;
|
|
|
|
public class JwtTokenClaimDetailDto
|
|
{
|
|
[JsonPropertyName("deviceId")]
|
|
public int? DeviceId { get; set; }
|
|
|
|
[JsonPropertyName("userDTO")]
|
|
public JwtTokenClaimDetailUserDto UserDTO { get; set; }
|
|
|
|
[JsonPropertyName("profilesData")]
|
|
public JwtTokenClaimDetailProfileDto ProfilesData { get; set; }
|
|
} |