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
2.4 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomerOnlineV2.Common.Models.ReceiverModel
{
public class ReceiverInformationModel : CommonResponse
{
public string? ReceiverId { get; set; }
public string? CustomerId { get; set; }
public string? MembershipId { get; set; }
public string? firstName { get; set; }
public string? middleName { get; set; }
public string? lastName1 { get; set; }
public string? lastName2 { get; set; }
public string? Country { get; set; }
public string? Address { get; set; }
public string? State { get; set; }
public string? City { get; set; }
public string? zipCode { get; set; }
public string? Email { get; set; }
public string? homePhone { get; set; }
public string? workPhone { get; set; }
public string? Mobile { get; set; }
public string? Relationship { get; set; }
public string? RelationshipId { get; set; }
public string? District { get; set; }
public string? purposeOfRemit { get; set; }
public string? receiverType { get; set; }
public string? idType { get; set; }
public string? idNumber { get; set; }
public string? createdDate { get; set; }
public string? idExpairyDate { get; set; }
public string? placeOfIssue { get; set; }
public string? paymentMode { get; set; }
public string? bankLocation { get; set; }
public string? payOutPartner { get; set; }
public string? bankName { get; set; }
public string? receiverAccountNumber { get; set; }
public string? Remarks { get; set; }
}
public class ReceiverEditModel : CommonResponse
{
public List<ReceiverInformationModel>? ReceiverInformationModel { get; set; }
}
//public class AgentDropDownModel
//{
// public string Flag { get; set; }
// public string Value { get; set; }
// public string Country { get; set; }
// public string Value3 { get; set; }
////}
//public class AgentDropDownList
//{
// public List<AgentDropDownResponse> AgentDropDownResponse { get; set; }
//}
//public class AgentDropDownResponse
//{
// public string Text { get; set; }
// public string Id { get; set; }
//}
}