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 WingSendTxnRequestCash { [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_phone { 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; } } }