mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
15 lines
419 B
C#
15 lines
419 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models
|
|
{
|
|
public abstract class BasePagingViewModel
|
|
{
|
|
public int Skip { get; set; } = 0;
|
|
public int Count { get; set; } = 50;
|
|
public int Total { get; set; }
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
|
public string SearchTerm { get; set; }
|
|
public int? TimezoneOffset { get; set; }
|
|
}
|
|
}
|