Add relationships feature and EF migration
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user