Api/NetinaShop.Domain/Entities/Settings/PaymentSetting.cs

9 lines
305 B
C#
Raw Normal View History

2024-02-12 22:01:15 +03:30
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;
}