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         /// <summary>\r
18         /// Get or Set the preset name\r
19         /// </summary>\r
20         public string Name { get; set; }\r
21 \r
22         /// <summary>\r
23         /// Get or set the preset query\r
24         /// </summary>\r
25         public string Query { get; set; }\r
26 \r
27         /// <summary>\r
28         /// Get or set the usage of Picture Settings in presets.\r
29         /// </summary>\r
30         public Boolean PictureSettings { get; set; }\r
31     }\r
32 }