Add project files.

This commit is contained in:
Tucker
2022-02-18 16:08:20 -05:00
parent abd3362d42
commit 230917eb75
22 changed files with 1429 additions and 0 deletions

14
Avatar.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace api
{
class Avatar
{
public string OutfitSelections { get; set; }
public string HairColor { get; set; }
public string SkinColor { get; set; }
public string FaceFeatures { get; set; }
}
}