btcpayserver/BTCPayServer/Models/StoreViewModels/StoresViewModel.cs
2020-10-18 03:11:17 -05:00

19 lines
512 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Models.StoreViewModels
{
public class StoresViewModel
{
public List<StoreViewModel> Stores { get; set; } = new List<StoreViewModel>();
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; }
}
}
}