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
{
///
/// kf_id
///
public string kf_id { get; set; } = "";
///
/// app_type_name
///
public string app_type_name { get; set; } = "";
///
/// app_id
///
public string app_id { get; set; } = "";
///
/// app_kf_account
///
public string app_kf_account { get; set; } = "";
///
/// kf_app_correlation_time
///
public long kf_app_correlation_time { get; set; } = 0;
///
/// kf_app_expire_date
///
public long kf_app_expire_date { get; set; } = 0;
}
}