diff options
Diffstat (limited to 'win/C#/Presets/Preset.cs')
-rw-r--r-- | win/C#/Presets/Preset.cs | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/win/C#/Presets/Preset.cs b/win/C#/Presets/Preset.cs index ef6438740..bf41e4719 100644 --- a/win/C#/Presets/Preset.cs +++ b/win/C#/Presets/Preset.cs @@ -1,37 +1,39 @@ /* Preset.cs $
-
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
namespace Handbrake.Presets
{
- using System;
+ using System.Windows.Controls;
- public class Preset
+ /// <summary>
+ /// A Preset
+ /// </summary>
+ public class Preset
{
/// <summary>
- /// Get or Set the category which the preset resides under
+ /// Gets or sets the category which the preset resides under
/// </summary>
public string Category { get; set; }
/// <summary>
- /// Get or Set the preset name
+ /// Gets or sets the preset name
/// </summary>
public string Name { get; set; }
/// <summary>
- /// Get or set the preset query
+ /// Gets or sets the preset query
/// </summary>
public string Query { get; set; }
/// <summary>
- /// Get or set the usage of Picture Settings in presets.
+ /// Gets or sets a value indicating whether to use picture Settings in presets.
/// </summary>
public bool PictureSettings { get; set; }
/// <summary>
- /// The version number which associates this preset with a HB build
+ /// Gets or sets The version number which associates this preset with a HB build
/// </summary>
public string Version { get; set; }
}
|