Api/Netina.Domain/MartenEntities/Settings/PaymentSetting.cs

9 lines
328 B
C#
Raw Permalink Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.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;
public string Shaba { get; set; } = string.Empty;
2024-02-12 22:01:15 +03:30
}