kf_app_correlation.cs 1008 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LoginModel
  7. {
  8. [Serializable]
  9. //kf_app_correlation
  10. public class kf_app_correlation
  11. {
  12. /// <summary>
  13. /// kf_id
  14. /// </summary>
  15. public string kf_id { get; set; } = "";
  16. /// <summary>
  17. /// app_type_name
  18. /// </summary>
  19. public string app_type_name { get; set; } = "";
  20. /// <summary>
  21. /// app_id
  22. /// </summary>
  23. public string app_id { get; set; } = "";
  24. /// <summary>
  25. /// app_kf_account
  26. /// </summary>
  27. public string app_kf_account { get; set; } = "";
  28. /// <summary>
  29. /// kf_app_correlation_time
  30. /// </summary>
  31. public long kf_app_correlation_time { get; set; } = 0;
  32. /// <summary>
  33. /// kf_app_expire_date
  34. /// </summary>
  35. public long kf_app_expire_date { get; set; } = 0;
  36. }
  37. }