8 lines
278 B
C#
8 lines
278 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;
|
|||
|
|
}
|