nexusforever/Source/NexusForever.Database.Character/Model/CharacterCreateModel.cs

20 lines
582 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
namespace NexusForever.Database.Character.Model
{
public class CharacterCreateModel
{
public byte Race { get; set; }
public byte CreationStart { get; set; }
public ushort Faction { get; set; }
public uint WorldId { get; set; }
public float X { get; set; }
public float Y { get; set; }
public float Z { get; set; }
public float Rx { get; set; }
public float Ry { get; set; }
public float Rz { get; set; }
public string Comment { get; set; }
}
}