2017-09-13 23:50:36 +09:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
|
|
{
|
|
|
|
public class StoresViewModel
|
|
|
|
{
|
2017-10-27 17:53:04 +09: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
|
|
|
|
{
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
2017-09-13 23:50:36 +09:00
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
public string WebSite
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
2017-09-13 23:50:36 +09:00
|
|
|
|
2017-10-27 17:53:04 +09:00
|
|
|
public string Id
|
|
|
|
{
|
|
|
|
get; set;
|
|
|
|
}
|
2018-03-23 16:24:57 +09:00
|
|
|
public bool IsOwner
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
set;
|
|
|
|
}
|
2017-10-27 17:53:04 +09:00
|
|
|
}
|
|
|
|
}
|
2017-09-13 23:50:36 +09:00
|
|
|
}
|