15 lines
472 B
C#
15 lines
472 B
C#
namespace Hutopy.Application.Users.Queries.GetCurrentUser;
|
|
|
|
public class UserDto
|
|
{
|
|
public Guid Id { get; init; }
|
|
public required string FirstName { get; init; }
|
|
public required string LastName { get; init; }
|
|
public string UserName { get; init; } = String.Empty;
|
|
public List<UserTransactionDto> UserTransactions { get; init; } = [];
|
|
public IList<string> UserRoles { get; init; } = [];
|
|
|
|
public required decimal TotalBalance { get; init; }
|
|
|
|
}
|