| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LoginModel
- {
- [Serializable]
- //kf_app_correlation
- public class kf_app_correlation
- {
- /// <summary>
- /// kf_id
- /// </summary>
- public string kf_id { get; set; } = "";
- /// <summary>
- /// app_type_name
- /// </summary>
- public string app_type_name { get; set; } = "";
- /// <summary>
- /// app_id
- /// </summary>
- public string app_id { get; set; } = "";
- /// <summary>
- /// app_kf_account
- /// </summary>
- public string app_kf_account { get; set; } = "";
- /// <summary>
- /// kf_app_correlation_time
- /// </summary>
- public long kf_app_correlation_time { get; set; } = 0;
- /// <summary>
- /// kf_app_expire_date
- /// </summary>
- public long kf_app_expire_date { get; set; } = 0;
- }
- }
|