17 lines
497 B
C#
17 lines
497 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FinlyticCore.Models.Auth;
|
|
|
|
public class UserDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Email { get; set; } = string.Empty;
|
|
public string FullName { get; set; } = string.Empty;
|
|
public string Role { get; set; } = "User";
|
|
public bool IsActive { get; set; } = true;
|
|
public List<string> FcmTokens { get; set; } = new();
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime? LastLoginAt { get; set; }
|
|
}
|