2017-09-13 23:50:36 +09:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
|
|
{
|
|
|
|
public class StoresViewModel
|
|
|
|
{
|
2020-10-16 00:35:53 -05:00
|
|
|
public List<StoreViewModel> Stores { get; set; } = new List<StoreViewModel>();
|
2018-03-23 16:24:57 +09:00
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
public class StoreViewModel
|
|
|
|
{
|
2020-10-16 00:35:53 -05:00
|
|
|
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-10-27 17:53:04 +09:00
|
|
|
}
|
|
|
|
}
|
2017-09-13 23:50:36 +09:00
|
|
|
}
|