OSDN Git Service

088d39c853822173d29b52aee30868a27ca00d28
[handbrake-jp/handbrake-jp-git.git] / win / C# / Presets / Preset.cs
1 /*  Preset.cs $\r
2         \r
3            This file is part of the HandBrake source code.\r
4            Homepage: <http://handbrake.fr>.\r
5            It may be used under the terms of the GNU General Public License. */\r
6 \r
7 using System;\r
8 \r
9 namespace Handbrake.Presets\r
10 {\r
11     public class Preset\r
12     {\r
13         /// <summary>\r
14         /// Get or Set the category which the preset resides under\r
15         /// </summary>\r
16         public string Category { get; set; }\r
17 \r
18         /// <summary>\r
19         /// Get or Set the preset name\r
20         /// </summary>\r
21         public string Name { get; set; }\r
22 \r
23         /// <summary>\r
24         /// Get or set the preset query\r
25         /// </summary>\r
26         public string Query { get; set; }\r
27 \r
28         /// <summary>\r
29         /// Get or set the usage of Picture Settings in presets.\r
30         /// </summary>\r
31         public Boolean PictureSettings { get; set; }\r
32 \r
33         /// <summary>\r
34         /// 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 }