Retain store ids when filtering invoices

This commit is contained in:
Umar Bolatov
2019-09-11 20:54:26 -07:00
parent 13c8372329
commit 0f7458254e
3 changed files with 22 additions and 10 deletions

View File

@@ -13,8 +13,8 @@ namespace BTCPayServer.Models.InvoicingModels
public int Total { get; set; }
public string SearchTerm { get; set; }
public int? TimezoneOffset { get; set; }
public List<InvoiceModel> Invoices { get; set; } = new List<InvoiceModel>();
public string[] StoreIds { get; set; }
}
public class InvoiceModel