Add remaining project files
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using LiteDB;
|
||||
|
||||
namespace DeluxeBackend.Models
|
||||
{
|
||||
public class AccountAvatar
|
||||
{
|
||||
[BsonId]
|
||||
public long Id { get; set; }
|
||||
|
||||
[BsonRef("accounts")]
|
||||
public required Account Account { 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; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user