10 lines
254 B
C#
10 lines
254 B
C#
namespace Hutopy.Application.Users.Queries.GetCreatorInfo;
|
|
|
|
public class CreatorInfoDto
|
|
{
|
|
public required string FirstName { get; init; }
|
|
public required string LastName { get; init; }
|
|
public string UserName { get; init; } = String.Empty;
|
|
|
|
}
|