summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Attributes
diff options
context:
space:
mode:
authorScott <[email protected]>2015-09-26 21:29:34 +0100
committerScott <[email protected]>2015-09-26 21:30:33 +0100
commitc19ea798a23bfea7aba509309bef9168ece09836 (patch)
tree72c318fc971208bfcb0149bd98efef6a63f85926 /win/CS/HandBrake.ApplicationServices/Attributes
parenta6cf5c5fd4b4c23ad3998ff270162768ce9ae6e7 (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.cs2
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; }
}
}