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.
 
 

21 lines
625 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wing.Model
{
public class WingSendTxnResponseAcc
{
public string amount { get; set; }
public string fee { get; set; }
public string total { get; set; }
public string balance { get; set; }
public string exchange_rate { get; set; }
public string transaction_id { get; set; }
public string transaction_date { get; set; }
public string receiver_name { get; set; }
public string ext_transaction_id { get; set; }
}
}