mirror of
https://github.com/recroom2016/OpenRec.git
synced 2026-04-22 21:25:51 +00:00
15 lines
285 B
C#
15 lines
285 B
C#
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; }
|
|
}
|
|
}
|