Files
TxSearchApi/Datamodels/SearchModels/FilterModel.cs
Roland Fieger 5e15db793b first things
2021-09-22 12:37:40 +02:00

14 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Datamodels.SearchModels
{
public class FilterModel
{
public List<TableModel> TableDescriptions { get; set; }
public long Skip { get; set; }
public long Take { get; set; }
}
}