mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
12 lines
295 B
C#
12 lines
295 B
C#
#nullable enable
|
|
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class CreateStoreData
|
|
{
|
|
public string? DefaultCurrency { get; set; }
|
|
public string? RecommendedExchangeId { get; set; }
|
|
public Dictionary<string, string>? Exchanges { get; set; }
|
|
}
|