14 lines
346 B
C#
14 lines
346 B
C#
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; } = [];
|
|
}
|