btcpayserver/BTCPayServer/Models/StoreViewModels/StoresViewModel.cs
2018-07-26 22:32:50 +09:00

40 lines
744 B
C#

using NBitcoin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.StoreViewModels
{
public class StoresViewModel
{
public List<StoreViewModel> Stores
{
get; set;
} = new List<StoreViewModel>();
public class StoreViewModel
{
public string Name
{
get; set;
}
public string WebSite
{
get; set;
}
public string Id
{
get; set;
}
public bool IsOwner
{
get;
set;
}
}
}
}