mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
27 lines
811 B
C#
27 lines
811 B
C#
|
namespace BTCPayServer
|
||
|
{
|
||
|
public class UserPrefsCookie
|
||
|
{
|
||
|
public ListQueryDataHolder InvoicesQuery { get; set; }
|
||
|
public ListQueryDataHolder PaymentRequestsQuery { get; set; }
|
||
|
public ListQueryDataHolder UsersQuery { get; set; }
|
||
|
public ListQueryDataHolder PayoutsQuery { get; set; }
|
||
|
public ListQueryDataHolder PullPaymentsQuery { get; set; }
|
||
|
public string CurrentStoreId { get; set; }
|
||
|
}
|
||
|
|
||
|
public class ListQueryDataHolder
|
||
|
{
|
||
|
public ListQueryDataHolder() { }
|
||
|
|
||
|
public ListQueryDataHolder(string searchTerm, int? timezoneOffset)
|
||
|
{
|
||
|
SearchTerm = searchTerm;
|
||
|
TimezoneOffset = timezoneOffset;
|
||
|
}
|
||
|
|
||
|
public int? TimezoneOffset { get; set; }
|
||
|
public string SearchTerm { get; set; }
|
||
|
}
|
||
|
}
|