using System.Text.Json.Serialization; namespace RecRoomArchive.Models.API.Avatar { /// /// The avatar of the player /// public class PlayerAvatar { /// /// The outfit that the player has on. This includes data like their hair model, torso, hats, glasses, torso, etc... /// [JsonPropertyName(name: "OutfitSelections")] public string OutfitSelections { get; set; } = string.Empty; /// /// The skin color guid of the player /// [JsonPropertyName(name: "SkinColor")] public string SkinColor { get; set; } = string.Empty; /// /// The hair color guid of the player /// [JsonPropertyName(name: "HairColor")] public string HairColor { get; set; } = string.Empty; } }