LogServeData.cs 605 B

12345678910111213141516171819202122
  1. namespace DefaultNamespace.LogTool
  2. {
  3. [System.Serializable]
  4. public class LogServeData
  5. {
  6. public string hash { get; set; }
  7. public string title { get; set; }
  8. public string content { get; set; }
  9. public long time { get; set; }
  10. public string playerId { get; set; }
  11. /// <summary>
  12. /// 版本
  13. /// </summary>
  14. public string v { get; set; }
  15. public string DeviceID { get; set; }
  16. public string operatingSystem { get; set; }
  17. public int LogType{ get; set; }
  18. public string gameName{ get; set; }
  19. }
  20. }