mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
11 lines
295 B
C#
11 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; }
|
|
}
|