OSDN Git Service

WinGui;
[handbrake-jp/handbrake-jp-git.git] / win / C# / Presets / Preset.cs
1 /*  Preset.cs $\r
2     This file is part of the HandBrake source code.\r
3     Homepage: <http://handbrake.fr>.\r
4     It may be used under the terms of the GNU General Public License. */\r
5 \r
6 namespace Handbrake.Presets\r
7 {\r
8     /// <summary>\r
9     /// A Preset\r
10     /// </summary>\r
11     public class Preset \r
12     {\r
13         /// <summary>\r
14         /// Gets or sets the category which the preset resides under\r
15         /// </summary>\r
16         public string Category { get; set; }\r
17 \r
18         /// <summary>\r
19         /// Gets or sets the preset name\r
20         /// </summary>\r
21         public string Name { get; set; }\r
22 \r
23         /// <summary>\r
24         /// Gets or sets the preset query\r
25         /// </summary>\r
26         public string Query { get; set; }\r
27 \r
28         /// <summary>\r
29         /// Gets or sets a value indicating whether to use picture Settings in presets.\r
30         /// </summary>\r
31         public bool CropSettings { get; set; }\r
32 \r
33         /// <summary>\r
34         /// Gets or sets The version number which associates this preset with a HB build\r
35         /// </summary>\r
36         public string Version { get; set; }\r
37     }\r
38 }