Skip to content

Commit 1152be5

Browse files
authored
Merge pull request #659 from nofrixion/feature/MOOV-4809-Bank-warning-msg
Bank warning message
2 parents 24a86d4 + fdd9197 commit 1152be5

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/NoFrixion.MoneyMoov/Models/Merchant/MerchantPayByBankSetting.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,15 @@ public class MerchantPayByBankSetting
7373
/// <summary>
7474
/// The list of country codes representing the banks the country supports.
7575
/// </summary>
76-
public List<string> BankCountryCodes { get; set; } = new List<string>();
76+
public List<string> BankCountryCodes { get; set; } = new List<string>();
77+
78+
/// <summary>
79+
/// The heading for a warning message related to the bank institution to be displayed to the user.
80+
/// </summary>
81+
public string? WarningHeading { get; set; }
82+
83+
/// <summary>
84+
/// The warning message related to the bank institution to be displayed to the user.
85+
/// </summary>
86+
public string? WarningMessage { get; set; }
7787
}

0 commit comments

Comments
 (0)