diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs index 30d6b2f3a..b7d65c1a1 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs @@ -15,9 +15,9 @@ namespace HandBrake.ApplicationServices.Services.Interfaces public interface IPresetService
{
/// <summary>
- /// Gets or sets a Collection of presets.
+ /// Gets a Collection of presets.
/// </summary>
- ObservableCollection<Preset> Presets { get; set; }
+ ObservableCollection<Preset> Presets { get; }
/// <summary>
/// Add a new preset to the system
|