mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
57bc90ad03
* Add flags and migration * Archive store * Archive apps
23 lines
679 B
C#
23 lines
679 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Components.StoreSelector
|
|
{
|
|
public class StoreSelectorViewModel
|
|
{
|
|
public List<StoreSelectorOption> Options { get; set; }
|
|
public string CurrentStoreId { get; set; }
|
|
public string CurrentStoreLogoFileId { get; set; }
|
|
public string CurrentDisplayName { get; set; }
|
|
public int ArchivedCount { get; set; }
|
|
}
|
|
|
|
public class StoreSelectorOption
|
|
{
|
|
public bool Selected { get; set; }
|
|
public bool IsOwner { get; set; }
|
|
public string Text { get; set; }
|
|
public string Value { get; set; }
|
|
public WalletId WalletId { get; set; }
|
|
}
|
|
}
|