Browse Source

Tp live ime london

prod
shakun 10 months ago
parent
commit
222d6c19df
  1. 1
      Business/BusinessLogic/SMSApiService/SMSService.cs
  2. 4
      Common/Models/Enums/GeneralEnum.cs
  3. 3
      Common/Models/RequestResponse/TPResponse.cs
  4. 8
      GMENepal/GMENepalAPIService/GMENepalAPI.cs
  5. 4
      Repository/DAO/Application/ApplicationDAO.cs
  6. 1
      Repository/DAO/ThirdParty/ThirdPartyRepo.cs
  7. 63
      ThirdPartyAPIs/App_Data/Templates/BANK_TRANSFER_TXN_CLEARED.html
  8. 20
      ThirdPartyAPIs/App_Data/Templates/BANK_TRANSFER_TXN_PENDING.html
  9. 4
      ThirdPartyAPIs/App_Data/Templates/BANK_TXN_POST.html
  10. 48
      ThirdPartyAPIs/App_Data/Templates/BASIC_REGISTRATION_EMAIL.html
  11. 4
      ThirdPartyAPIs/App_Data/Templates/CASH_TXN_POST.html
  12. 8
      ThirdPartyAPIs/App_Data/Templates/KYC_VERIFICATION_EMAIL.html
  13. 4
      ThirdPartyAPIs/App_Data/Templates/NEW_CUSTOMER_EMAIL.html
  14. 2
      ThirdPartyAPIs/App_Data/Templates/OTP_EMAIL.html
  15. 380
      ThirdPartyAPIs/Config/Mapping.json
  16. 9
      ThirdPartyAPIs/Keys/Brac/BBL_public.pem
  17. 9
      ThirdPartyAPIs/Keys/Brac/BBL_public_live.pem
  18. 27
      ThirdPartyAPIs/Keys/Brac/Jme_private_live.pem
  19. 27
      ThirdPartyAPIs/Keys/Brac/Jme_private_uat.pem
  20. 9
      ThirdPartyAPIs/Keys/Brac/Jme_public_live.pem
  21. 9
      ThirdPartyAPIs/Keys/Brac/Jme_public_uat.pem
  22. 28
      ThirdPartyAPIs/Keys/DongaV2/private_uat.pem
  23. 9
      ThirdPartyAPIs/Keys/DongaV2/public_uat.pem
  24. 11
      ThirdPartyAPIs/ThirdPartyAPIs.csproj

1
Business/BusinessLogic/SMSApiService/SMSService.cs

@ -44,6 +44,7 @@ namespace Business.BusinessLogic.SMSApiService
"?username=" + _userName + "&password=" + _password +
"&number=" + model.MobileNumber + "&message=" + HttpUtility.UrlEncode(model.SMSBody) +
"&orig=" + HttpUtility.UrlEncode(_senderId);
_log.Debug(url);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream resStream = response.GetResponseStream();

4
Common/Models/Enums/GeneralEnum.cs

@ -70,9 +70,7 @@ namespace Common.Models.Enums
TF_NO_BALANCE = 16,
CUSTOMER_MOBILE_NOT_REGISTER = 17,
CUSTOMER_LAWSON_REGISTER = 18,
CUSTOMER_REFERRAL_500 = 19
NEW_REGISTER_WELCOME = 17,
}
public enum JWTType

3
Common/Models/RequestResponse/TPResponse.cs

@ -12,6 +12,8 @@ namespace Common.Models.RequestResponse
public string Extra2 { get; set; }
public string Extra3 { get; set; }
public string Extra4 { get; set; }
public void SetResponse(string responseCode, string msg, string id)
{
ResponseCode = responseCode;
@ -30,6 +32,7 @@ namespace Common.Models.RequestResponse
public string Extra2 { get; set; }
public string Extra3 { get; set; }
public void SetResponse(string responseCode, string msg, string id)
{
ResponseCode = responseCode;

8
GMENepal/GMENepalAPIService/GMENepalAPI.cs

@ -103,7 +103,7 @@ namespace GMENepal.GMENepalAPIService
else
{
response = _fastMoneyWeb.AccountValidation(UserName, Password, accValidate.BankCode, accValidate.AccountNumber
, accValidate.ReceiverName, "");
, accValidate.ReceiverName);
}
_log.Info("AccountValidation | RESPONSE :" + JsonConvert.SerializeObject(response).ToString());
@ -276,14 +276,16 @@ namespace GMENepal.GMENepalAPIService
{
var exRateBank = _fastMoneyWeb.GetCalculation(gS.PartnerId, gS.UserName, gS.Password, gS.SessionId, "", "1000", "B", gS.BeneCountry, "P");
_log.Info("GetExRate | RESPONSE :" + JsonConvert.SerializeObject(exRateBank).ToString());
model = _fastMoneyWeb.ProcessBankDeposit(gS.PartnerId, gS.UserName, gS.Password, gS.ControlNo, exRateBank.ExConfirmId
, gS.MembershipId, gS.CustomerName, gS.CustomerAddress, gS.CustomerContact, gS.CustomerCity, gS.CustomerCountry
, gS.CustomerIdType, gS.CustomerIdNumber, gS.BeneName, gS.BeneAddress, gS.BeneContact, gS.BeneCity, gS.BeneCountry, gS.Profession
, gS.IncomeSource, gS.Relationship, gS.PurposeOfRemittance, gS.SendingAmount, gS.ReceivingAmount, gS.PaymentMethod, gS.BankCode
, gS.BankName, gS.BankAccountNumber, dateTxn, gS.CalculateBy, gS.FreeCharge, gS.ControlNo, gS.PayoutCurrency, gS.ReceiverCostRate
, gS.SenderCostRate, gS.Signature, "");
, gS.SenderCostRate, gS.Signature);
_response.Extra = exRateBank.ExRate;
_response.Extra = exRateBank.UsdVsNpr;
}
_log.Info("SendTransaction | RESPONSE :" + JsonConvert.SerializeObject(model).ToString());

4
Repository/DAO/Application/ApplicationDAO.cs

@ -206,6 +206,10 @@ namespace Repository.DAO.Application
{
res.Extra3 = dt.Rows[0][5].ToString();
}
if (dt.Columns.Count > 6)
{
res.Extra4 = dt.Rows[0][6].ToString();
}
}
return res;
}

1
Repository/DAO/ThirdParty/ThirdPartyRepo.cs

@ -71,6 +71,7 @@ namespace Repository.DAO.ThirdParty
sql.AppendLine(", @goodsType = " + FilterString(txn.CDDI.GoodsType));
sql.AppendLine(", @portOfShipment = " + FilterString(txn.CDDI.PortOfShipment));
sql.AppendLine(", @discountedFee = " + FilterString(txn.DiscountedFee));
sql.AppendLine(", @requestedBy = " + FilterString(txn.RequestedBy));
_log.Debug("OnlineOrMobileSendTransaction | SQL: " + sql.ToString());
TPResponse res = ParseDbResult(sql);
_log.Debug("OnlineOrMobileSendTransaction | DB Response: " + JsonConvert.SerializeObject(res));

63
ThirdPartyAPIs/App_Data/Templates/BANK_TRANSFER_TXN_CLEARED.html

@ -2,14 +2,15 @@
<body>
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 20px">
<div style="text-align: right;">
<img src="https://japanremit.com/assets/img/jmelogo.jpg" alt="IME London" class="CToWUd" height="90">
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 10px">
<div style="text-align: left;">
<img src="https://imelondon.co.uk/assets/images/logo.png" alt="imelondon" class="CToWUd" height="50" width="150" style="height: 50px;width:150;border:0;" >
<img src="https://imelondon.co.uk/assets/dist/images/imelondan.svg" alt="imelondon" class="CToWUd" height="50" width="155" style="height: 50px;width:155px;border:0;">
</div>
<br />
<hr style="background-color: #fff; border-top: 1.5px solid #2B3C90; border-bottom: none;" />
<div class="body">
Dear <strong>{CustomerName}</strong>,
@ -28,54 +29,54 @@
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Payout Country:</td>
<td>{PayoutCountry}</td>
<td>Payout Country</td>
<td> : {PayoutCountry}</td>
</tr>
<tr>
<td>Beneficiary Name:</td>
<td>{BeneName}</td>
<td>Receiver Name </td>
<td> : {BeneName}</td>
</tr>
<tr>
<td>Transfer Type:</td>
<td>{TransferType}</td>
<td>Transfer Type</td>
<td> : {TransferType}</td>
</tr>
<tr>
<td>Bank Name:</td>
<td>{BankName}</td>
<td>Bank Name</td>
<td> : {BankName}</td>
</tr>
<tr>
<td>Bank Branch:</td>
<td>{BankBranch}</td>
<td>Bank Branch</td>
<td> : {BankBranch}</td>
</tr>
<tr>
<td>Bank Account No:</td>
<td>{AccNum}</td>
<td>Bank Account No</td>
<td> : {AccNum}</td>
</tr>
<tr>
<td>Payout Amount:</td>
<td>{PayoutAmt}</td>
<td>Payout Amount</td>
<td> : {PayoutAmt}</td>
</tr>
<tr>
<td>Transfer Amount:</td>
<td>{TransferAmt}</td>
<td>Transfer Amount</td>
<td> : {TransferAmt}</td>
<tr>
<td>Exchange Rate:</td>
<td>{ExRate}</td>
<td>Exchange Rate</td>
<td> : {ExRate}</td>
<tr>
<td>Fee:</td>
<td>{Fee}</td>
<td>Fee</td>
<td> : {Fee}</td>
</tr>
<tr>
<td>Discount:</td>
<td>{Discount}</td>
<td>Discount</td>
<td> : {Discount}</td>
</tr>
<tr>
<td>Total Amount:</td>
<td>{TotalAmt}</td>
<td>Total Amount</td>
<td> : {TotalAmt}</td>
</tr>
<tr>
<td>Transaction Date:</td>
<td>{TxnDate}</td>
<td>Transaction Date</td>
<td> : {TxnDate}</td>
</tr>
</table>
</td>
@ -86,7 +87,7 @@
<p style="margin-top: 20px">
If there is any mistake in the details and needs correction, Please contact us. <br /> <br />
Once the transaction is approved by us, you will receive an email with the Pin number which should be forwarded to your receiver. <br />
Once the transaction is approved by us, you will receive an email with the Reference number which should be forwarded to your receiver. <br />
</p>

20
ThirdPartyAPIs/App_Data/Templates/BANK_TRANSFER_TXN_PENDING.html

@ -3,9 +3,9 @@
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 20px">
<div style="text-align: right;">
<!--<div style="text-align: right;">
<img src="https://japanremit.com/assets/img/jmelogo.jpg" alt="IME London" class="CToWUd" height="90">
</div>
</div>-->
<br />
<hr style="background-color: #fff; border-top: 1.5px solid #2B3C90; border-bottom: none;" />
@ -13,20 +13,20 @@
<div class="body">
Dear <strong>{CustomerName}</strong>,
<p style="margin-top: 20px">
Thank you for your transaction. Please kindly deposit the total amount of £XXX.00 in the following bank account. Your transaction
will be released once the amount is credited in our account with the reference number given below. If we do not get the deposit in two working days,
your transaction will be cancelled. Please note that the transfer amount should exactly match with your transaction amount.<br />
<b>You can now start sending money to your loved ones. </b>
</p>
<p style="margin-top: 20px">
Thank you for your transaction. Please kindly deposit the total amount of £{CollectAmt} in the following bank account. Your transaction
will be released once the amount is credited in our account with the reference number given below. If we do not get the deposit in two working days,
your transaction will be cancelled. Please note that the transfer amount should exactly match with your transaction amount.<br />
<b>You can now start sending money to your loved ones. </b>
</p>
<p style="margin-top: 20px">
Our Bank Information<br />
<ol style=" list-style-type: none; /* Remove bullets */ padding: 0; /* Remove padding */ margin-left: 30px; /* Remove margins */">
<li>Bank Name: CLEAR BANK </li>
<li>Account Name: IME LONDON </li>
<li>Sort Code: 04-06-93 </li>
<li>Accoutn Number: 00000151 </li>
<li>Sort Code: 04-08-42 </li>
<li>Accoutn Number: 00000042 </li>
<li>Reference: {CustomerName} </li>
<li><b>Subhida UK Ltd is the registered name of IME London.</b></li>
</ol>

4
ThirdPartyAPIs/App_Data/Templates/BANK_TXN_POST.html

@ -3,9 +3,9 @@
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 20px">
<div style="text-align: right;">
<!--<div style="text-align: right;">
<img src="https://japanremit.com/assets/img/jmelogo.jpg" alt="IME London" class="CToWUd" height="90">
</div>
</div>-->
<br />
<hr style="background-color: #fff; border-top: 1.5px solid #2B3C90; border-bottom: none;" />

48
ThirdPartyAPIs/App_Data/Templates/BASIC_REGISTRATION_EMAIL.html

@ -2,18 +2,54 @@
<body>
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 20px">
<div style="text-align: right;">
<img src="https://japanremit.com/assets/img/jmelogo.jpg" alt="IME London" class="CToWUd" height="90">
</div>
<br />
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 1px">
<hr style="background-color: #fff; border-top: 1.5px solid #2B3C90; border-bottom: none;" />
<div class="body">
Dear <strong>{CustomerName}</strong>,
<{{{tanble>
<p style="margin-top: 20px">
Thank you for registering with IME London. We are overjoyed to have you join our community of users from around the world who are streamlining and improving the way they send and receive money internationally. <br />
Prepare yourself for a never-before-seen level of rapid, secure, and convenient remittance. <br />
</p>
<p style="margin-top: 20px">
<b>You can now start sending money to your loved ones. </b><br />
</p>
<p style="margin-top: 20px">
Please use the referal code <b>
{RefCode}
</b> to invite your friends and get 1£ after your friend sucessfully registers and 4 £ after sending the transaction.
<br />
** Terms and Condition applied
</p>
<p style="margin-top: 20px">
<b>Your account details: </b><br />
<ol style=" list-style-type: none; /* Remove bullets */ padding: 0; /* Remove padding */ margin-left: 30px; /* Remove margins */">
<li>Customer ID: {CustomerId} </li>
<li>User ID: {UserId} </li>
<li>First Name: {FirstName} </li>
<li>Middle Name: {MiddleName} </li>
<li>Last Name: {LastName} </li>
<li>Mobile Number: {MobileNo} </li>
<li>Address: {Address}</li>
<li>Email: {EMAIL_ID}</li>
<li>Registered Date: {RegisteredDate}</li>
</ol>
</p>
<p style="margin-top: 20px">
We appreciate your decision to choose IME London to transform the way you manage international money transfers. Your path to smooth remittance begins right now! <br />
</p>
</div>
<p style="margin-top: 20px;">
Thank you! <br />
IME London Team <br />
</p>

4
ThirdPartyAPIs/App_Data/Templates/CASH_TXN_POST.html

@ -3,9 +3,9 @@
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 20px">
<div style="text-align: right;">
<!--<div style="text-align: right;">
<img src="https://japanremit.com/assets/img/jmelogo.jpg" alt="IME London" class="CToWUd" height="90">
</div>
</div>-->
<br />
<hr style="background-color: #fff; border-top: 1.5px solid #2B3C90; border-bottom: none;" />

8
ThirdPartyAPIs/App_Data/Templates/KYC_VERIFICATION_EMAIL.html

@ -19,7 +19,11 @@
</p>
<p style="margin-top: 20px">
<b>Please use the Referral CODE {RefCode} to Invite your friends and get 10 £ as our signing gift. </b><br />
Please use the referal code <b>
{RefCode}
</b> to invite your friends and get 1£ after your friend sucessfully registers and 4 £ after sending the transaction.
<br />
** Terms and Condition applied
</p>
@ -44,7 +48,7 @@
</div>
<p style="margin-top: 20px;">
Thank you! <br />
IME London Team <br/>
IME London Team <br />
</p>

4
ThirdPartyAPIs/App_Data/Templates/NEW_CUSTOMER_EMAIL.html

@ -3,9 +3,9 @@
<div style="color:#434444; padding: 15px; font-family: Roboto; font-size: 15px; margin-top: 20px">
<div style="text-align: right;">
<!--<div style="text-align: right;">
<img src="https://japanremit.com/assets/img/jmelogo.jpg" alt="Japan Money Express" class="CToWUd" height="90">
</div>
</div>-->
<br />
<hr style="background-color: #fff; border-top: 1.5px solid #2B3C90; border-bottom: none;" />

2
ThirdPartyAPIs/App_Data/Templates/OTP_EMAIL.html

@ -14,7 +14,7 @@
</p>
<p style="margin-top: 20px">
Please contact Customer Care at <strong>02088660307 </strong>at 9:30 AM- 6:30 PM or email to info@imelondon.co.uk if you need further assistance. <br />
Please contact Customer Care at <strong>02088660307 </strong>at 6.00 AM- 6:00 PM or email to info@imelondon.co.uk if you need further assistance. <br />
</p>

380
ThirdPartyAPIs/Config/Mapping.json

@ -1,192 +1,192 @@
[
{
"Type": "NOTIFICATION_TYPE",
"Mappings": [
{
"SValue": "PUSH_NOTIFICATION",
"DValue": "P",
"Dtext": "Push Notification"
},
{
"SValue": "EMAIL",
"DValue": "E",
"Dtext": "Email"
},
{
"SValue": "SMS",
"DValue": "S",
"Dtext": "SMS"
}
]
},
{
"Type": "EMAIL_TEMPLATE",
"Mappings": [
{
"SValue": "OTP_EMAIL",
"DValue": "App_Data\\Templates\\OTP_EMAIL.html",
"Dtext": "IME London Verification"
},
{
"SValue": "BANK_TXN_POST",
"DValue": "App_Data\\Templates\\BANK_TXN_POST.html",
"Dtext": "Bank Transfer Accepted"
},
{
"SValue": "CASH_TXN_POST",
"DValue": "App_Data\\Templates\\CASH_TXN_POST.html",
"Dtext": "Cash Collection"
},
{
"SValue": "BANK_TRANSFER_TXN_CLEARED",
"DValue": "App_Data\\Templates\\BANK_TRANSFER_TXN_CLEARED.html",
"Dtext": "Payment Cleared By IME London"
},
{
"SValue": "BANK_TRANSFER_TXN_PENDING",
"DValue": "App_Data\\Templates\\BANK_TRANSFER_TXN_PENDING.html",
"Dtext": "Bank Transfer - Pendoing Payment"
},
{
"SValue": "KYC_VERIFICATION_EMAIL",
"DValue": "App_Data\\Templates\\KYC_VERIFICATION_EMAIL.html",
"Dtext": "KYC Approved"
},
{
"SValue": "BASIC_REGISTRATION_EMAIL",
"DValue": "App_Data\\Templates\\BASIC_REGISTRATION_EMAIL.html",
"Dtext": "Registration Completion Email"
},
{
"SValue": "RESET_PASSWORD_EMAIL",
"DValue": "App_Data\\Templates\\RESET_PASSWORD_EMAIL.html",
"Dtext": "Reset Password"
}
]
},
{
"Type": "PUSH_NOTIFY_TEMPLATE",
"Mappings": [
{
"SValue": "NEW_REGISTER_WELCOME",
"SText": "You have successfully register to JME \n Remmittance System.",
"DText": "Welcome",
"DValue": "en"
},
{
"SValue": "CUSTOMER_KYC_APPROVED",
"SText": "KYC has been approved for your profile.\n Now you are able to send transaction",
"DText": "Kyc",
"DValue": "en"
},
{
"SValue": "JP_POST_APPROVED",
"SText": "{FUND} has been added in your account. \n Please refer to profile to view your balance.",
"DText": "TopUp",
"DValue": "en"
},
{
"SValue": "TRANSACTION_APPROVED",
"SText": "Your transaction has been approved. \n Please refer to Notice menu to view PinNO.",
"DText": "Approve",
"DValue": "en"
},
{
"SValue": "RENEW_ID_APPROVED",
"SText": "Renewed KYC documents have been approved.",
"DText": "Renew Id",
"DValue": "en"
},
{
"SValue": "TRANSACTION_CANCELLED",
"SText": "Cancellation request for {PIN_NUM} has been completed.\n Amount has been refunded to your JME account.",
"DText": "Cancel",
"DValue": "en"
},
{
"SValue": "TRANSACTION_MODIFY",
"SText": "Modification request for {PIN_NUM} has been completed. \n Transaction will be processed for payment with new details.",
"DText": "Modify",
"DValue": "en"
},
{
"SValue": "TRANSACTION_PAID",
"SText": "Transaction with {PIN_NUM} has been sucessfully paid.",
"DText": "Paid",
"DValue": "en"
},
{
"SValue": "TRANSACTION_SUCCESS",
"SText": "Your transaction has been succesfully completed.",
"DText": "Success",
"DValue": "en"
},
{
"SValue": "NEW_REGISTER_WELCOME",
"SText": "तपाईंले JME रेमिटेन्स प्रणालीमा सफलतापूर्वक दर्ता गर्नुभएको छ।",
"DText": "Welcome",
"DValue": "ne"
},
{
"SValue": "CUSTOMER_KYC_APPROVED",
"SText": "KYC तपाइँको प्रोफाइल को लागी अनुमोदित गरिएको छ। \n अब तपाईं लेनदेन पठाउन सक्षम हुनुहुन्छ।",
"DText": "Kyc",
"DValue": "ne"
},
{
"SValue": "JP_POST_APPROVED",
"SText": "तपाईंको खातामा {FUND} थपिएको छ। \n आफ्नो ब्यालेन्स हेर्नको लागि कृपया प्रोफाइल हेर्नुहोस्।",
"DText": "TopUp",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_APPROVED",
"SText": "तपाइँको लेनदेन स्वीकृत भएको छ। \n कृपया PinNO हेर्न सूचना मेनु सन्दर्भ गर्नुहोस्।",
"DText": "Approve",
"DValue": "en"
},
{
"SValue": "RENEW_ID_APPROVED",
"SText": "नवीकरण गरिएका KYC कागजातहरू स्वीकृत भएका छन्।",
"DText": "Renew Id",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_CANCELLED",
"SText": "{PIN_NUM} को लागि रद्द अनुरोध पूरा भयो। \n तपाईंको JME खातामा रकम फिर्ता गरिएको छ।",
"DText": "Cancel",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_MODIFY",
"SText": "{PIN_NUM} को लागी संशोधन अनुरोध पूरा भयो। \n नयाँ विवरणहरूको साथ भुक्तानीको लागि लेनदेन प्रक्रिया गरिनेछ।",
"DText": "Modify",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_PAID",
"SText": "{PIN_NUM} को साथ लेनदेन सफलतापूर्वक भुक्तान गरिएको छ।",
"DText": "Paid",
"DValue": "ne"
},
{
"SValue": "TF_NO_BALANCE",
"SText": "Your transaction has been processed successfully but your balance is insufficient. Please load your wallet.",
"DText": "Success",
"DValue": "en"
},
{
"SValue": "TF_NO_BALANCE",
"SText": "तपाईंको लेनदेन सफलतापूर्वक प्रशोधन गरिएको छ तर तपाईंको ब्यालेन्स अपर्याप्त छ। कृपया आफ्नो वालेट लोड गर्नुहोस्।",
"DText": "Success",
"DValue": "ne"
},
{
"SValue": "CUSTOMER_REFERRAL_500",
"SText": "Refer your friend to register with us and earn up to 500 JPY points. Your referral code is {membershipid}",
"DText": "JME Remittance Mobile Application",
"DValue": "en"
}
]
}
{
"Type": "NOTIFICATION_TYPE",
"Mappings": [
{
"SValue": "PUSH_NOTIFICATION",
"DValue": "P",
"Dtext": "Push Notification"
},
{
"SValue": "EMAIL",
"DValue": "E",
"Dtext": "Email"
},
{
"SValue": "SMS",
"DValue": "S",
"Dtext": "SMS"
}
]
},
{
"Type": "EMAIL_TEMPLATE",
"Mappings": [
{
"SValue": "OTP_EMAIL",
"DValue": "App_Data\\Templates\\OTP_EMAIL.html",
"Dtext": "IME London Verification"
},
{
"SValue": "BANK_TXN_POST",
"DValue": "App_Data\\Templates\\BANK_TXN_POST.html",
"Dtext": "Bank Transfer Accepted"
},
{
"SValue": "CASH_TXN_POST",
"DValue": "App_Data\\Templates\\CASH_TXN_POST.html",
"Dtext": "Cash Collection"
},
{
"SValue": "BANK_TRANSFER_TXN_CLEARED",
"DValue": "App_Data\\Templates\\BANK_TRANSFER_TXN_CLEARED.html",
"Dtext": "Payment Cleared By IME London"
},
{
"SValue": "BANK_TRANSFER_TXN_PENDING",
"DValue": "App_Data\\Templates\\BANK_TRANSFER_TXN_PENDING.html",
"Dtext": "Bank Transfer - Pendoing Payment"
},
{
"SValue": "KYC_VERIFICATION_EMAIL",
"DValue": "App_Data\\Templates\\KYC_VERIFICATION_EMAIL.html",
"Dtext": "KYC Approved"
},
{
"SValue": "BASIC_REGISTRATION_EMAIL",
"DValue": "App_Data\\Templates\\BASIC_REGISTRATION_EMAIL.html",
"Dtext": "Registration Completion Email"
},
{
"SValue": "RESET_PASSWORD_EMAIL",
"DValue": "App_Data\\Templates\\RESET_PASSWORD_EMAIL.html",
"Dtext": "Reset Password"
}
]
},
{
"Type": "PUSH_NOTIFY_TEMPLATE",
"Mappings": [
{
"SValue": "NEW_REGISTER_WELCOME",
"SText": "You have successfully register to IME London. Now you are able to send transaction",
"DText": "Welcome",
"DValue": "en"
},
{
"SValue": "CUSTOMER_KYC_APPROVED",
"SText": "KYC has been approved for your profile.\n Now you are able to send transaction",
"DText": "Kyc",
"DValue": "en"
},
{
"SValue": "JP_POST_APPROVED",
"SText": "{FUND} has been added in your account. \n Please refer to profile to view your balance.",
"DText": "TopUp",
"DValue": "en"
},
{
"SValue": "TRANSACTION_APPROVED",
"SText": "Your transaction has been approved. \n Please refer to Notice menu to view PinNO.",
"DText": "Approve",
"DValue": "en"
},
{
"SValue": "RENEW_ID_APPROVED",
"SText": "Renewed KYC documents have been approved.",
"DText": "Renew Id",
"DValue": "en"
},
{
"SValue": "TRANSACTION_CANCELLED",
"SText": "Cancellation request for {PIN_NUM} has been completed.\n Amount has been refunded to your JME account.",
"DText": "Cancel",
"DValue": "en"
},
{
"SValue": "TRANSACTION_MODIFY",
"SText": "Modification request for {PIN_NUM} has been completed. \n Transaction will be processed for payment with new details.",
"DText": "Modify",
"DValue": "en"
},
{
"SValue": "TRANSACTION_PAID",
"SText": "Transaction with {PIN_NUM} has been sucessfully paid.",
"DText": "Paid",
"DValue": "en"
},
{
"SValue": "TRANSACTION_SUCCESS",
"SText": "Your transaction has been succesfully completed.",
"DText": "Success",
"DValue": "en"
},
{
"SValue": "NEW_REGISTER_WELCOME",
"SText": "तपाईंले JME रेमिटेन्स प्रणालीमा सफलतापूर्वक दर्ता गर्नुभएको छ।",
"DText": "Welcome",
"DValue": "ne"
},
{
"SValue": "CUSTOMER_KYC_APPROVED",
"SText": "KYC तपाइँको प्रोफाइल को लागी अनुमोदित गरिएको छ। \n अब तपाईं लेनदेन पठाउन सक्षम हुनुहुन्छ।",
"DText": "Kyc",
"DValue": "ne"
},
{
"SValue": "JP_POST_APPROVED",
"SText": "तपाईंको खातामा {FUND} थपिएको छ। \n आफ्नो ब्यालेन्स हेर्नको लागि कृपया प्रोफाइल हेर्नुहोस्।",
"DText": "TopUp",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_APPROVED",
"SText": "तपाइँको लेनदेन स्वीकृत भएको छ। \n कृपया PinNO हेर्न सूचना मेनु सन्दर्भ गर्नुहोस्।",
"DText": "Approve",
"DValue": "en"
},
{
"SValue": "RENEW_ID_APPROVED",
"SText": "नवीकरण गरिएका KYC कागजातहरू स्वीकृत भएका छन्।",
"DText": "Renew Id",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_CANCELLED",
"SText": "{PIN_NUM} को लागि रद्द अनुरोध पूरा भयो। \n तपाईंको JME खातामा रकम फिर्ता गरिएको छ।",
"DText": "Cancel",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_MODIFY",
"SText": "{PIN_NUM} को लागी संशोधन अनुरोध पूरा भयो। \n नयाँ विवरणहरूको साथ भुक्तानीको लागि लेनदेन प्रक्रिया गरिनेछ।",
"DText": "Modify",
"DValue": "ne"
},
{
"SValue": "TRANSACTION_PAID",
"SText": "{PIN_NUM} को साथ लेनदेन सफलतापूर्वक भुक्तान गरिएको छ।",
"DText": "Paid",
"DValue": "ne"
},
{
"SValue": "TF_NO_BALANCE",
"SText": "Your transaction has been processed successfully but your balance is insufficient. Please load your wallet.",
"DText": "Success",
"DValue": "en"
},
{
"SValue": "TF_NO_BALANCE",
"SText": "तपाईंको लेनदेन सफलतापूर्वक प्रशोधन गरिएको छ तर तपाईंको ब्यालेन्स अपर्याप्त छ। कृपया आफ्नो वालेट लोड गर्नुहोस्।",
"DText": "Success",
"DValue": "ne"
},
{
"SValue": "CUSTOMER_REFERRAL_500",
"SText": "Refer your friend to register with us and earn up to 500 JPY points. Your referral code is {membershipid}",
"DText": "JME Remittance Mobile Application",
"DValue": "en"
}
]
}
]

9
ThirdPartyAPIs/Keys/Brac/BBL_public.pem

@ -1,9 +0,0 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv4MaydoHSLOFUjuWwqI+
tC9wkkvNirz8PRXLtOFTFbHFyu4NMmq71MB83EXbMbSDfPTX7SF9MlH6u6IfptOQ
eu4xqYebXFCdmjItp2WNs3c1saVvUB+iGOna1XzUTNt+9Vmw6XEYk2pJDrX/wF7p
Jr2MZWf/ZsIv1GOKz9Y6zIQhH1Toj9EMx45PzSjMhgNlZIazl+9T2sU9AwYSFIEv
sFOdayt00LbIeKy0ORp52A7CPY/PLXs4hzFKvkoUuRjObk91mj1Fj4s4qPqDHesY
4X0yZZxc5UcfJk23Fx9bDTKKHBkk8jpOxvOdi3V3EMUg+RmMveCvykaWKUHdXTjT
GwIDAQAB
-----END PUBLIC KEY-----

9
ThirdPartyAPIs/Keys/Brac/BBL_public_live.pem

@ -1,9 +0,0 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv4MaydoHSLOFUjuWwqI+
tC9wkkvNirz8PRXLtOFTFbHFyu4NMmq71MB83EXbMbSDfPTX7SF9MlH6u6IfptOQ
eu4xqYebXFCdmjItp2WNs3c1saVvUB+iGOna1XzUTNt+9Vmw6XEYk2pJDrX/wF7p
Jr2MZWf/ZsIv1GOKz9Y6zIQhH1Toj9EMx45PzSjMhgNlZIazl+9T2sU9AwYSFIEv
sFOdayt00LbIeKy0ORp52A7CPY/PLXs4hzFKvkoUuRjObk91mj1Fj4s4qPqDHesY
4X0yZZxc5UcfJk23Fx9bDTKKHBkk8jpOxvOdi3V3EMUg+RmMveCvykaWKUHdXTjT
GwIDAQAB
-----END PUBLIC KEY-----

27
ThirdPartyAPIs/Keys/Brac/Jme_private_live.pem

@ -1,27 +0,0 @@
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEAkrf+jpSqgyOowZ5cj1DOVy9eTDXZhYM0DwvpLYsCsmR8Y2mT
IQKE5X6YLcEMARrwkUZmTbnDKmaWTcyrwRr0KiyUgEXahmfpa9BgTdY/chpn5wqH
a2LhEAnayfsZXOCenVWuHMT3B/VDUsum8e+j7l5aSnPc4lY5vbYHJ4390D6242mg
UturzzF3hu2PHC0wsj570FdEDnoAizGohw5NZ7Cr1jl+HsDd0myGZQ7kFq1FEvfd
wuYsfFboJuWBkzYKM6Sj8e0ESX1zWaCnId/gd+5hss9q2kV7WwgUMQRNPamJ2c4p
q1ryObt/dtwIc/I3Cjfoo2uu7zmOuXrmp4mV1QIDAQABAoIBAHOUluhjnV/pu4ur
4WbVVXfBTRvkYBOZpG0mCO9jzyARoRv/k3Qxs9fGvsNsjLRiMJmBSB569JB2eHmZ
fsSFI0wGCoZygQ/Y1D2mzfcDjL+qpaeQ19V086/a04zCTtyn5swzLxJi5+hRAlQ7
MqztB8tEcQSt+ZgkLSCSQVibtxNQ2sGMW8eZ2fDR2cYRuaooVlM3JqYlKFcbk34W
jGpCZbDOrZoefQnj/W327mSPrSCcW9ipH8YGyfveLPk5ZFbfbaesvx9mJWr5F8AD
E9CpsOIxuh3IlgNAQexCSZygxV4zQncutOSkbNIFLV/i9WFMjVmfeaKZZ7mi7B8N
WOvMOYECgYEA9JmZ+7jF/jODL0M1IcVnmy/BKnfhP2bdzhJ51vzSLy0/fKYEjr3R
XGsGqhlR5snuwggKkVYAs4RuszdkL6IFECQrUIernw9ZZG8Om47VlDim6FTlrjuI
imP0cFd1iOGpI5IP5DTT1nPnk+pR6OWpbGx2UpsOqF9PZzAG2QjC7jkCgYEAmY6K
fo9izkMF4Ig13CIkSjioyPqgWhRNTbw+TUL/DIAeKpAf4BWo4Rgean1fe5AYAGPH
gyHe6EjZgWY9o1cj50grAa13njmc2tiWMQC3Q6PEIWeUJzrNVpzjuy4jg3ygLjd5
MD5e4KKIahDpTSItqjxs+iAmO2e8vshhRTW1ZH0CgYAZENSS0zCXCDhdU4nSWCRx
5sbozzgqAySfxYzu1yHC6+QhpfG5nwIhcmZQcB/QgskQ4ToUArg3rU6a1wZRS00x
hkNaEU0pE62ZeTgKAO0qL1QLYwfWfwtTA0M9b/j/egCXQJSYUkGTLHWC1vRl5YMj
NUo61OD/qCS+8lEBVMCFIQKBgF8Y+sZUcIGC2oHqeUiiUE0y97y4ElSXHCTXPtJE
eoW4VnZPmZ4Ca/szH6sdh+OTInojUSzx7gV3EFTmB6g/0Dls5U19q4Xu8ihKWAFz
Cww1wMJbTlJZRU+tjA+hDFdi+CSHMGNjTQjbP5ZIcOPXFebG00q4XFUP8sFIgY0G
LRdVAoGBAO1rXqYDN1V35VwTPYr58TQ0//UjTkTG3ylAq+fNOWPfDcdUkekffkMZ
VIOVX5k1UJUTEH/fghFJbIXv6HNzTMaUy82QCtwbl+ZkUaQvHb1BR6qez1Hntbsc
LvNeuK1HzW7eTQ44LJUgaiUEnuzDHy2DvczAmhGWuw3RVvqbMzzD
-----END RSA PRIVATE KEY-----

27
ThirdPartyAPIs/Keys/Brac/Jme_private_uat.pem

@ -1,27 +0,0 @@
-----BEGIN RSA PRIVATE KEY-----
MIIEowIBAAKCAQEAlJMQY3F9AV+4uq68QcNQuGbfCz5Ox+hpNMa3AEEioQdd0T3t
V3HQgLYqfAXQnoHPLobLLBefA+J6qfx/R+m03PfeREUUqHGWabiS79g5j/mZFVTw
97+z7Y8OIcfUG9TFeh0imHzZNuz9snYEiDqZ0BO7StnAC8xlRGspiFzec7845Q36
qIhTsrLezafYr9Z2mBQQzyD6GNvDbfIhuZhpiY61UfOiMTKZhJs4mPJ22dCDeWu1
a0DeSO/qAfx7sEkVGvXFZwKMfukrb8nAUKXCI1fB/TBTnbFFRN2jLsMMdzUXCKvJ
bYP7kaa4ck7E9uiLMWZIrODZ5kXubuUgqeRMfQIDAQABAoIBAFWE7SsAWR7gVTmH
eK812JG8DOiw3bHt0hjhxNZtp5we3F6jkakCxyw/LucihbmnKHU0e2AO3KXkyAxu
XWksWcHTHuoXBVQLxbNm3ZUW1dNMrVP9B5LjkpLMBCtnlWzLpTur54z0WCdodIMz
sVokuQJvSSBFhGiGJ0ghks99/UGL0Gnt2y0E66mD/+CA9J7uCPp9rxuiRu3FTiUg
sZMy1OxyaCZ68uzynDV7YvX6OyiYIW5ymOzIAum5UVgp9H6OgHOyeD9Bvfm7h6F9
PuCQGY6WfMgn0KDYILNakFeCIJmr6YNyyKLgPBBlSqdgt/HmdkHPVILPYjoqF6CU
1otey1UCgYEAyrI26lfcjfL2Qp8u0cjyJDvv7VVXhG9M/IyilHm1lJ4du2ElkOSv
9W0OKduX2REPvylTg7d6dm/Ah1H0OguMd2I7BEVNScdsEYJqafGSrs6NHWx4ysK4
BcG4Md+CXnjW9vCVkvFxX/ItNaf7+2PdzaCysfCfttSIkz9FE7JdkFMCgYEAu6VN
jwzhwn0Tvl/Uqx/n8H9s7KrV9oU+Gg6XEWL0d/BFW0369oqIl22Y7jzQKvs6RM7H
+ji535g5l3Ykmuu1Qnpx/fIWrTDUzhqJQQJmm35unHVE3+Kk0N8uL3mfibjfVCSE
bARzhguEYB1RQ9wIYnNMmrfNp3I2MdUc7nYFVe8CgYBZX8VJBR6x1FxzOb8qLyFd
irQbANNLCMx4WwZg012WPzW65nXq8nsHi2OAX1wQES7RSkaRwHgV+uZ4hFFcurTf
+wcsteYDTxQ+kDOdrS/RNjAQtkB4nu0HVMiD7RqNz1hxn9lD5oPoG1+F1iEMUpd9
UIsaXI//zKy/yFkL+0y4EwKBgAZBj6FqU4iRdPwO499EtA3voakOVQ3gCV8DB4Rb
4TyydQ2DPw/DNKSf0c53lpUoRRwQLNip1YCf6aOkG7pSi3uI644E6T6i9yVb+yGA
u/0JLRToUACK5OXV2wtYKbqEwGVkxkl3qIZakfJGZ/Q0PM9TesVZxXCEvUvSCCHn
K2xfAoGBAKIAMCDqurBDuJxOTQ4tZa0OJLdZpQ6ad4jMlgygp4x2gZIctyZdYoTR
yA+eySbWmvi2PY9eJMgDMACu+HH/76lX8EWRPhvlGtSJ9pGvkpEmbgLK3zRekElH
hxL4AYszRD7zvErTtQTZNT6Syt1v1gvKagERX+Ih73dEl6nymtD9
-----END RSA PRIVATE KEY-----

9
ThirdPartyAPIs/Keys/Brac/Jme_public_live.pem

@ -1,9 +0,0 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkrf+jpSqgyOowZ5cj1DO
Vy9eTDXZhYM0DwvpLYsCsmR8Y2mTIQKE5X6YLcEMARrwkUZmTbnDKmaWTcyrwRr0
KiyUgEXahmfpa9BgTdY/chpn5wqHa2LhEAnayfsZXOCenVWuHMT3B/VDUsum8e+j
7l5aSnPc4lY5vbYHJ4390D6242mgUturzzF3hu2PHC0wsj570FdEDnoAizGohw5N
Z7Cr1jl+HsDd0myGZQ7kFq1FEvfdwuYsfFboJuWBkzYKM6Sj8e0ESX1zWaCnId/g
d+5hss9q2kV7WwgUMQRNPamJ2c4pq1ryObt/dtwIc/I3Cjfoo2uu7zmOuXrmp4mV
1QIDAQAB
-----END PUBLIC KEY-----

9
ThirdPartyAPIs/Keys/Brac/Jme_public_uat.pem

@ -1,9 +0,0 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJMQY3F9AV+4uq68QcNQ
uGbfCz5Ox+hpNMa3AEEioQdd0T3tV3HQgLYqfAXQnoHPLobLLBefA+J6qfx/R+m0
3PfeREUUqHGWabiS79g5j/mZFVTw97+z7Y8OIcfUG9TFeh0imHzZNuz9snYEiDqZ
0BO7StnAC8xlRGspiFzec7845Q36qIhTsrLezafYr9Z2mBQQzyD6GNvDbfIhuZhp
iY61UfOiMTKZhJs4mPJ22dCDeWu1a0DeSO/qAfx7sEkVGvXFZwKMfukrb8nAUKXC
I1fB/TBTnbFFRN2jLsMMdzUXCKvJbYP7kaa4ck7E9uiLMWZIrODZ5kXubuUgqeRM
fQIDAQAB
-----END PUBLIC KEY-----

28
ThirdPartyAPIs/Keys/DongaV2/private_uat.pem

@ -1,28 +0,0 @@
-----BEGIN PRIVATE KEY-----
MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQC5m60iHPnqD3ow
NMlr+C+VuxScjiFzzozLzc7v4rPYfbEf86tZwy0MAXfghpKYMPz8DtkklZ+VGBD5
4xtba/Bxu7Zm8fm/XW9xENLhR8Gcj9JbLzF+enEaPBifoVqfhqSJ7EJ3MuE3SM4r
XI/PVpPImIqm5WkbijnDKWScHMiHEOXYdzSIDwv+QjnAhZW4/ga5oLYZvwslqeq8
EpsGD60VfsnLivtwsrS34DZ679WLmgvWO507c/iHe6D/JB0hBpMPRbnCKkVqkJX4
xqi0iGr+b8TRMnEjBl/ERof7woNwUPKeO7AXQF6TgLS/kxnfryH0SrzUD0hESJt5
/vbRh8xVAgMBAAECggEAWXAmsXV9B8iFfI0zMg/Z/jCz8eybOg6h0eNOgFGhkASh
QWBNhWeDYXGjrlGqeiPBBESzZemjiFicdY12NUuCBYwKjPi0+/2uIbGVrHDDXwn+
t2m6U9P0hEvJIcLCxHRA/SUXshCWbelrT4G+2o5BkDvRNDL/vwGQa/aaQI+uIUa1
JugQ5Oo4OY3KIheuhWSbBopI4iraXh7cOhWv9wf1SPa7M8MyIQM2YcYpxqQNrbgY
iYpSespeGGi2K4ObeKVr43UeGrk4jQTJHD25ZCqHqRfxgWWF8z7H59ZrR5jl5qcK
Ul49klG+1jEdEHobnY/52RNzVq5qEPevbm0qr+1M0QKBgQDaI/8RkLYNDM/kzrcI
Aqg817PnIf+ue8vKHVPgehJwZsTBnhjV0x5VOZma0vDpBkDa+EDB6QLeQqVcGPzA
RgrWVaWpedEOzQUTcGDlPaaP2OKjp9Pj35+g3mxx4pXTh9LevuIBRYIHMPPr+5zX
qoyTZ6aNvb7qfmoyciSg8bipTwKBgQDZ0kIumVphhM34FCF+RNpGsg3jIgAL8shq
ab8BAHZorTPagIiBWIjd6aHsEK7lHQ2nRadcVZzWaXzRhufIzFHa8ElgmiGb/ffC
/I4vXIVY5WqsKMLZdQn7pGXx7W5WOP9iCgSQ82glD5sOuhx81e/QyUyRD1xTRaTR
tzzuwIS/GwKBgQDQ667L9OvW/dFSU4TKwDi+5NvhXxeQ1fHs5j/B+0gTrOl+gltI
1wTzHNJ3jNW8aAfPb/odfXwIwI288hWIVMzmUGr0ML4/za2x22yBwZT3qgIOOZtf
YHpyyPPV8uwKBsi4Gts72oVZO9Ixze5+Q1KVjqzejb7+uQoevGFGX5u7UwKBgQC1
r8zmY6Hg386R0/DQCwxqlZBB2ZViYgNLx6K7ajBaRcaPxlCWW0vmlj8q0gugLii6
Ur4zpXGp4tlrR/TEJ7FLRsxd2JKaNC/ao6DR3oGX0dy1d1Z33kkSbmFed6ZmIyra
EvMWGQHQkADNOu4SLrzXUWEdSku/ZcMB7q7Tkx/m6wKBgQDBgmCR2qdctMOePemS
m4pL6pc7RBDP4e8pDPPjIWEZ5XK0C8LqSYbKUsSsc1tZvLZmSi0LPkv/BDgg0ZfW
AY93XOLQHzqkHarq3Kk4TbsEZnujQNO32nGmNsGq/nf+MeJZIWKBHKED/OIeQFIR
X5UxrGALecfxe83OrFwK8svSpQ==
-----END PRIVATE KEY-----

9
ThirdPartyAPIs/Keys/DongaV2/public_uat.pem

@ -1,9 +0,0 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuZutIhz56g96MDTJa/gv
lbsUnI4hc86My83O7+Kz2H2xH/OrWcMtDAF34IaSmDD8/A7ZJJWflRgQ+eMbW2vw
cbu2ZvH5v11vcRDS4UfBnI/SWy8xfnpxGjwYn6Fan4akiexCdzLhN0jOK1yPz1aT
yJiKpuVpG4o5wylknBzIhxDl2Hc0iA8L/kI5wIWVuP4GuaC2Gb8LJanqvBKbBg+t
FX7Jy4r7cLK0t+A2eu/Vi5oL1judO3P4h3ug/yQdIQaTD0W5wipFapCV+MaotIhq
/m/E0TJxIwZfxEaH+8KDcFDynjuwF0Bek4C0v5MZ368h9Eq81A9IREibef720YfM
VQIDAQAB
-----END PUBLIC KEY-----

11
ThirdPartyAPIs/ThirdPartyAPIs.csproj

@ -308,20 +308,11 @@
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Keys\" />
<Folder Include="Logs\" />
</ItemGroup>
<ItemGroup>
<Content Include="Keys\DongaV2\private_uat.pem">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Keys\DongaV2\public_uat.pem" />
<Content Include="Config\Mapping.json" />
<Content Include="Keys\Brac\BBL_public.pem" />
<Content Include="Keys\Brac\Jme_private_uat.pem" />
<Content Include="Keys\Brac\Jme_public_uat.pem" />
<Content Include="Keys\Brac\BBL_public_live.pem" />
<Content Include="Keys\Brac\Jme_private_live.pem" />
<Content Include="Keys\Brac\Jme_public_live.pem" />
<None Include="packages.config" />
<None Include="Properties\PublishProfiles\CustomProfile.pubxml" />
<None Include="Properties\Settings.settings">

Loading…
Cancel
Save