Files
btcpayserver/BTCPayServer/Models/BasePagingViewModel.cs
2020-07-28 10:28:32 -05:00

18 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BTCPayServer.Models
{
public class BasePagingViewModel
{
public int Skip { get; set; }
public int Count { get; set; }
public int Total { get; set; }
public string SearchTerm { get; set; }
public int? TimezoneOffset { get; set; }
}
}