Files
TenWholeYears.Server/RecNet.Application/Profiles/ProfileDto.cs

9 lines
157 B
C#

namespace RecNet.Application.Profiles;
public class ProfileDTO
{
public Guid ProfileId { get; init; }
public required string Name { get; init; }
}