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     using System.Windows.Controls;\r
9 \r
10     /// <summary>\r
11     /// A Preset\r
12     /// </summary>\r
13     public class Preset \r
14     {\r
15         /// <summary>\r
16         /// Gets or sets the category which the preset resides under\r
17         /// </summary>\r
18         public string Category { get; set; }\r
19 \r
20         /// <summary>\r
21         /// Gets or sets the preset name\r
22         /// </summary>\r
23         public string Name { get; set; }\r
24 \r
25         /// <summary>\r
26         /// Gets or sets the preset query\r
27         /// </summary>\r
28         public string Query { get; set; }\r
29 \r
30         /// <summary>\r
31         /// Gets or sets a value indicating whether to use picture Settings in presets.\r
32         /// </summary>\r
33         public bool PictureSettings { get; set; }\r
34 \r
35         /// <summary>\r
36         /// Gets or sets The version number which associates this preset with a HB build\r
37         /// </summary>\r
38         public string Version { get; set; }\r
39     }\r
40 }