Files
QuotifyBE/DTOs/UserInfoDTO.cs

12 lines
266 B
C#

namespace QuotifyBE.DTOs;
public record class UserInfoDTO
{
public int Id { get; set; }
required public string Name { get; set; }
required public string Email { get; set; }
public int Role { get; set; }
public string? RoleName { get; set; }
};