Browse Source

#28683 update

#28058-Inbound-api
Dinesh 5 months ago
parent
commit
8694280cc1
  1. 5
      RemitInboundAPI/RemitInboundAPI.Common/Model/RemitModel/ExRateModel.cs

5
RemitInboundAPI/RemitInboundAPI.Common/Model/RemitModel/ExRateModel.cs

@ -137,10 +137,13 @@ namespace RemitInboundAPI.Common.Model.RemitModel
public class RemittanceDetailsModel
{
[Required]
[StringLength(3)]
public string? SendingCountryCode { get; set; }
[Required]
[StringLength(3)]
public string? PayoutCountryCode { get; set; }
[Required]
[StringLength(2)]
public string? PayoutTypeCode { get; set; }
public string? PayoutBankCode { get; set; }
public string? PayoutBankBranchCode { get; set; }
@ -166,6 +169,7 @@ namespace RemitInboundAPI.Common.Model.RemitModel
[Required]
public string? Occupation { get; set; }
[Required]
[StringLength(1)]
public string? CalcBy { get; set; }
}
@ -174,6 +178,7 @@ namespace RemitInboundAPI.Common.Model.RemitModel
[Required]
[StringLength(20)]
public string? SenderFirstName { get; set; }
[StringLength(20)]
public string? SenderMiddleName { get; set; }
[Required]
[StringLength(20)]

Loading…
Cancel
Save