mirror of
https://github.com/Biarity/Sieve.git
synced 2025-04-07 12:59:36 +02:00
13 lines
291 B
C#
13 lines
291 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;
|
|
}
|
|
} |