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.
 
 

50 lines
1.1 KiB

using Common.Models.DigitalSignature;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BracBank.Model
{
public class AccountValidationReponse : BracApiResponse
{
public AccountValidationData Data { get; set; }
}
public class AccountValidationData
{
public string AccountName { get; set; }
public string AccountNumber { get; set; }
}
public class WalletValidationReponse : BracApiResponse
{
public WalletValidationData Data { get; set; }
}
public class WalletValidationData
{
public string WalletNo { get; set; }
public string WalletName { get; set; }
public string MNOResponse { get; set; }
public string WalletStatusCode { get; set; }
public string WalletStatusDescription { get; set; }
}
public class AccountBalanceReponse : BracApiResponse
{
public AccountBalanceData Data { get; set; }
}
public class AccountBalanceData
{
public string AccountBalance { get; set; }
}
}