Remove stores list (#3300)

This commit is contained in:
d11n
2022-01-14 03:59:27 +01:00
committed by GitHub
parent 223c71ce8b
commit 51db1593d6
7 changed files with 7 additions and 175 deletions

View File

@@ -1,18 +0,0 @@
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; }
}
}
}