Update 07.12.2022
This commit is contained in:
25
C#/FiveM/Framework/Framework.Shared/Models/PlayerData.cs
Normal file
25
C#/FiveM/Framework/Framework.Shared/Models/PlayerData.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user