#27 get last receipt, get minimalUser, get my user
This commit is contained in:
13
src/Application/Users/Queries/GetCurrentUser/UserDto.cs
Normal file
13
src/Application/Users/Queries/GetCurrentUser/UserDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Hutopy.Application.Users.Queries;
|
||||
|
||||
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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user