Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/C#/FiveM/Framework/Framework.Shared/Models/PlayerData.cs
2022-12-07 15:35:41 +01:00

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;
}
}
}