RankEntry.cs 567 B

1234567891011121314151617181920212223
  1. using SQLite4Unity3d;
  2. using System;
  3. namespace LocalRank {
  4. public class RankEntry
  5. {
  6. [PrimaryKey, AutoIncrement]
  7. public int Id { get; set; }
  8. public int UserId { get; set; }
  9. public int GameType { get; set; }
  10. public int Score { get; set; }
  11. public string Nickname { get; set; }
  12. public string Country { get; set; }
  13. public string State { get; set; }
  14. public string City { get; set; }
  15. public DateTime CreateTime { get; set; }
  16. public DateTime UpdateTime { get; set; }
  17. }
  18. }