using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DidabuCloud.Unity.Core { public class UserInfo { public UserInfo() { IsNewLogin = true; LoginDays = 0; TotalOnlineTime = 0L; Level = 1; } public int Level { get; set; } public string DidabuId { get; set; } public string UserName { get; set; } public string HeadImageUrl { get; set; } public bool IsNewLogin { get; set; } public int LoginDays { get; set; } public long TotalOnlineTime { get; set; } } }