Files
VORTEX-REC-LEAK/Models/AvatarSaved.cs
T
2026-07-23 18:21:43 -07:00

24 lines
670 B
C#

using LiteDB;
namespace DeluxeBackend.Models
{
public class AvatarSaved
{
[BsonId]
public long Id { get; set; }
[BsonRef("accounts")]
public required Account Account { get; set; }
public required int Slot { get; set; }
public required string PreviewImageName { get; set; }
public string Name { get; set; } = "";
public string OutfitSelections { get; set; } = "";
public string OutfitSelectionsV2 { get; set; } = "";
public string FaceFeatures { get; set; } = "";
public string SkinColor { get; set; } = "";
public string HairColor { get; set; } = "";
}
}