13 lines
263 B
C#
13 lines
263 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RecNet.Application.Profiles;
|
|
|
|
public class ProfileDTO
|
|
{
|
|
[JsonPropertyName("ProfileId")]
|
|
public Guid ProfileId { get; init; }
|
|
|
|
[JsonPropertyName("Name")]
|
|
public required string Name { get; init; }
|
|
}
|