mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
19 lines
512 B
C#
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; }
|
|
}
|
|
}
|
|
}
|