Files
social-media/src/Application/Users/Queries/GetCurrentUser/UserDto.cs
2024-05-12 16:40:24 -04:00

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; } = [];
}