9 lines
305 B
C#
9 lines
305 B
C#
namespace NetinaShop.Domain.Entities.Settings;
|
|
|
|
public class PaymentSetting
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string ZarinPalApiKey { get; set; } = string.Empty;
|
|
public string PayPalApiKey { get; set; } = string.Empty;
|
|
public string BehPardakhtApiKey { get; set; } = string.Empty;
|
|
} |