OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Presets / preset.cs
1 using System;\r
2 \r
3 namespace Handbrake.Presets\r
4 {\r
5     public class Preset\r
6     {\r
7         /// <summary>\r
8         /// Get or Set the preset's level. This indicated if it is a root or child node\r
9         /// </summary>\r
10         public int Level { get; set; }\r
11 \r
12         /// <summary>\r
13         /// Get or Set the category which the preset resides under\r
14         /// </summary>\r
15         public string Category { get; set; }\r
16 \r
17         public string TopCategory { get; set; }\r
18 \r
19         /// <summary>\r
20         /// Get or Set the preset name\r
21         /// </summary>\r
22         public string Name { get; set; }\r
23 \r
24         /// <summary>\r
25         /// Get or set the preset query\r
26         /// </summary>\r
27         public string Query { get; set; }\r
28 \r
29         /// <summary>\r
30         /// Get or set the usage of Picture Settings in presets.\r
31         /// </summary>\r
32         public Boolean PictureSettings { get; set; }\r
33     }\r
34 }