mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
17 lines
400 B
C#
17 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; }
|
|
}
|