9 lines
332 B
C#
9 lines
332 B
C#
namespace NetinaShop.Domain.MartenEntities.Settings;
|
|
|
|
public class PaymentSetting
|
|
{
|
|
public string ZarinPalApiKey { get; set; } = string.Empty;
|
|
public string PayPalApiKey { get; set; } = string.Empty;
|
|
public string BehPardakhtApiKey { get; set; } = string.Empty;
|
|
public string Shaba { get; set; } = string.Empty;
|
|
} |