mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
14 lines
299 B
C#
14 lines
299 B
C#
namespace Application.DataTransferObjects.User;
|
|
|
|
public class UserDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid AllianceId { get; set; }
|
|
|
|
public required string PlayerName { get; set; }
|
|
|
|
public required string Email { get; set; }
|
|
|
|
public required string Role { get; set; }
|
|
} |