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