mirror of
https://github.com/Biarity/Sieve.git
synced 2025-10-15 09:56:01 +02:00
18 lines
430 B
C#
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";
|
|
}
|
|
}
|