QuickImage – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6  
7 namespace QuickImage.Database
8 {
9 [Flags]
10 public enum QuickImageSearchParameters : int
11 {
12 None = 0,
13 CaseSensitive = 1,
14 Metadata = 2,
15 Split = 4,
16 }
17 }