mirror of
https://github.com/AdilElFarissi/btcpay-opensimulator-plugin.git
synced 2026-08-14 09:02:53 +00:00
12 lines
423 B
C#
12 lines
423 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Plugins.OpenSimulator.Data;
|
|
|
|
namespace BTCPayServer.Plugins.OpenSimulator.Models;
|
|
public class OpenSimulatorPageViewModel
|
|
{
|
|
public List<OpenSimulatorData> Data { get; set; }
|
|
public string StoreID { get; set; }
|
|
public string StoreDefaultPaymetMethod { get; set; }
|
|
public string StoreDefaultCurrency { get; set; }
|
|
public string ServerIP { get; set; }
|
|
} |