mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 11:00:06 +01:00
12 lines
266 B
C#
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; }
|
|
|
|
};
|