btcpayserver/BTCPayServer/Models/StoreViewModels/StoresViewModel.cs

19 lines
512 B
C#
Raw Normal View History

2017-09-13 23:50:36 +09:00
using System.Collections.Generic;
namespace BTCPayServer.Models.StoreViewModels
{
public class StoresViewModel
{
public List<StoreViewModel> Stores { get; set; } = new List<StoreViewModel>();
2018-03-23 16:24:57 +09:00
public class StoreViewModel
{
public string Id { get; set; }
public string Name { get; set; }
public string WebSite { get; set; }
public bool IsOwner { get; set; }
public bool HintWalletWarning { get; set; }
}
}
2017-09-13 23:50:36 +09:00
}