Files
Finlytic/FinlyticCore/Models/Auth/AuthResponseDto.cs
T

17 lines
522 B
C#

using System;
using System.Collections.Generic;
namespace FinlyticCore.Models.Auth;
public class AuthResponseDto
{
public string Token { get; set; } = string.Empty;
public Guid UserId { get; set; }
public string Email { get; set; } = string.Empty;
public string FullName { get; set; } = string.Empty;
public string Role { get; set; } = "User";
public List<string> FcmTokens { get; set; } = new();
public DateTime ExpiresAt { get; set; }
public bool RequiresPasswordChange { get; set; }
}