diff options
author | Scott <[email protected]> | 2015-09-26 21:29:34 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-09-26 21:30:33 +0100 |
commit | c19ea798a23bfea7aba509309bef9168ece09836 (patch) | |
tree | 72c318fc971208bfcb0149bd98efef6a63f85926 /win/CS/HandBrake.ApplicationServices/Attributes | |
parent | a6cf5c5fd4b4c23ad3998ff270162768ce9ae6e7 (diff) |
App Services Modelling Tidy Up
Making event objects immutable. Making Libhb constructs internal to the
library. We should expose this with a managed api if we need it outside
the library. (Part 1)
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Attributes')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Attributes/ShortName.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Attributes/ShortName.cs b/win/CS/HandBrake.ApplicationServices/Attributes/ShortName.cs index eab372e34..10a4d1631 100644 --- a/win/CS/HandBrake.ApplicationServices/Attributes/ShortName.cs +++ b/win/CS/HandBrake.ApplicationServices/Attributes/ShortName.cs @@ -30,6 +30,6 @@ namespace HandBrake.ApplicationServices.Attributes /// <summary>
/// Gets or sets the short name.
/// </summary>
- public string Name { get; set; }
+ public string Name { get; private set; }
}
}
|