btcpayserver/BTCPayServer/Models/StoreViewModels/ListStoresViewModel.cs

19 lines
476 B
C#
Raw Normal View History

using System.Collections.Generic;
using BTCPayServer.Data;
namespace BTCPayServer.Models.StoreViewModels;
public class ListStoresViewModel
{
public class StoreViewModel
{
public string StoreName { get; set; }
public string StoreId { get; set; }
public bool Archived { get; set; }
public List<UserStore> Users { get; set; }
}
public List<StoreViewModel> Stores { get; set; } = new ();
public bool Archived { get; set; }
}