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; } } }