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.
 
 

68 lines
1.4 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
namespace Wing.Model
{
public class WingSendTxnRequestAcc
{
[Required]
public string first_name { get; set; }
[Required]
public string last_name { get; set; }
public string gender { get; set; }
[Required]
public string id_number { get; set; }
[Required]
public string id_type { get; set; }
[Required]
public string nationality { get; set; }
[Required]
public string date_of_birth { get; set; }
[Required]
public string country_of_birth { get; set; }
[Required]
public string occupation { get; set; }
public string sender_account { get; set; }
[Required]
public string country_code { get; set; }
[Required]
public string receiver_name { get; set; }
[Required]
public string receiver_account { get; set; }
[Required]
public decimal amount { get; set; }
public string currency { get; set; }
[Required]
public string purpose { get; set; }
public string other { get; set; }
public string ext_transaction_id { get; set; }
public string ext_transaction_date { get; set; }
}
public class CashCommitRequest
{
}
}