16 lines
393 B
C#
16 lines
393 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RecNet.Application.Profiles.Avatar;
|
|
|
|
public class AvatarDTO
|
|
{
|
|
[JsonPropertyName("OutfitSelections")]
|
|
public required string OutfitSelections { get; init; }
|
|
|
|
[JsonPropertyName("SkinColor")]
|
|
public required string SkinColor { get; init; }
|
|
|
|
[JsonPropertyName("HairColor")]
|
|
public required string HairColor { get; init; }
|
|
}
|