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.
 
 

14 lines
457 B

namespace Transfast.Model.Payers
{
public class TFPayersResponse
{
public string PayerId { get; set; }
public string PayerName { get; set; }
public string BranchId { get; set; }
public string BranchName { get; set; }
public string BranchAddress { get; set; }
public string NeedBank { get; set; }
public decimal CustomerRate { get; set; }
public bool IsAnywhere { get; set; }
}
}