mirror of
https://github.com/Biarity/Sieve.git
synced 2025-11-06 19:55:34 +01: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;
|
|
}
|
|
} |