mirror of
https://github.com/Biarity/Sieve.git
synced 2025-04-12 15:02:53 +02:00
13 lines
251 B
C#
13 lines
251 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Sieve.Models
|
|
{
|
|
public class SieveOptions
|
|
{
|
|
public bool CaseSensitive { get; set; } = false;
|
|
|
|
public int DefaultPageSize { get; set; } = 0;
|
|
}
|
|
} |