12 lines
228 B
C#
12 lines
228 B
C#
namespace Content.Shared.Preferences
|
|
{
|
|
/// <summary>
|
|
/// The clothing preference for a profile. Stored in database!
|
|
/// </summary>
|
|
public enum ClothingPreference
|
|
{
|
|
Jumpsuit,
|
|
Jumpskirt
|
|
}
|
|
}
|