Files
RRAC/RecRoomArchive.Models/API/Avatar/PlayerAvatar.cs
splootybean 387ec7ba89 Initialize repository
Added basic info to get in game for like...August 2016 ;-;
It's not much but it's a start
2026-02-27 00:58:13 -08:00

23 lines
866 B
C#

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