persistence/Persistence/Models/RequestDto.cs

11 lines
193 B
C#
Raw Permalink Normal View History

2024-11-08 18:24:52 +05:00
namespace Persistence.Models;
public class RequestDto
{
public int Skip { get; set; }
public int Take { get; set; }
public string SortSettings { get; set; } = string.Empty;
}