Files
Sieve/Sieve/Models/SieveOptions.cs
2022-01-13 00:56:47 +03:00

18 lines
430 B
C#

namespace Sieve.Models
{
public class SieveOptions
{
public bool CaseSensitive { get; set; } = false;
public int DefaultPageSize { get; set; } = 0;
public int MaxPageSize { get; set; } = 0;
public bool ThrowExceptions { get; set; } = false;
public bool IgnoreNullsOnNotEqual { get; set; } = true;
public string CultureNameOfTypeConversion { get; set; } = "en";
}
}