10 lines
237 B
C#
10 lines
237 B
C#
namespace KonSoft.Payment.Settings;
|
|
|
|
public static class PaymentSettings
|
|
{
|
|
private const string Prefix = "Payment";
|
|
|
|
//Add your own setting names here. Example:
|
|
//public const string MySetting1 = Prefix + ".MySetting1";
|
|
}
|