25 lines
774 B
C#
25 lines
774 B
C#
namespace Framework.Shared.Models {
|
|
public class PlayerData {
|
|
public string owner { get; set; }
|
|
public string charId { get; set; }
|
|
public bool sex { get; set; }
|
|
public int height { get; set; }
|
|
public string firstName { get; set; }
|
|
public string lastName { get; set; }
|
|
public string birth { get; set; }
|
|
public string skin { get; set; }
|
|
|
|
public PlayerData() {}
|
|
|
|
public PlayerData(dynamic data) {
|
|
owner = data.owner;
|
|
charId = data.charId;
|
|
sex = data.sex;
|
|
height = data.height;
|
|
firstName = data.firstName;
|
|
lastName = data.lastName;
|
|
birth = data.birth;
|
|
skin = data.skin;
|
|
}
|
|
}
|
|
} |