using PhxhSDK; public class UserInfo { public string UserID; public string ThirdId; public float TotalRecharge = 0f; public ulong Version = 0; public UserInfo(string userID = null) { if (userID == null) userID = DeviceHelper.GetDeviceId(); UserID = userID; } }