mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
16 lines
400 B
C#
16 lines
400 B
C#
using System.Collections.Generic;
|
|
|
|
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<StoreViewModel> Stores { get; set; } = new ();
|
|
public bool Archived { get; set; }
|
|
}
|