app/BTCPayApp.Core/Models/CreateStoreData.cs
2025-05-14 14:14:20 +02:00

12 lines
377 B
C#

namespace BTCPayApp.Core.Models;
public class CreateStoreData
{
public string? Name { get; set; }
public string DefaultCurrency { get; set; } = null!;
public Dictionary<string, string>? Exchanges { get; set; }
public string? PreferredExchangeId { get; set; }
public bool CanEditPreferredExchange { get; set; }
public bool CanAutoCreate { get; set; }
}