2024-04-01 13:05:11 +03:30
|
|
|
|
namespace NetinaShop.Domain.MartenEntities.Settings;
|
2024-02-12 22:01:15 +03:30
|
|
|
|
|
|
|
|
|
|
public class PaymentSetting
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ZarinPalApiKey { get; set; } = string.Empty;
|
|
|
|
|
|
public string PayPalApiKey { get; set; } = string.Empty;
|
|
|
|
|
|
public string BehPardakhtApiKey { get; set; } = string.Empty;
|
2024-04-03 10:40:41 +03:30
|
|
|
|
public string Shaba { get; set; } = string.Empty;
|
2024-02-12 22:01:15 +03:30
|
|
|
|
}
|