You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
796 B

namespace Common.Model
{
public class UserModel
{
public string UserId { get; set; }
public string uuid { get; set; }
public string AppVersion { get; set; }
public string phoneBrand { get; set; }
public string phoneOs { get; set; }
public string fcmId { get; set; }
public string osVersion { get; set; }
}
public class KycRequest
{
public string UserId { get; set; }
public string DeviceType { get; set; }
public string OsVersion { get; set; }
public string CustomerType { get; set; }
}
public class KycOption
{
public string UserId { get; set; }
public string RegistrationType { get; set; }
public string Code { get; set; }
}
}