diff options
author | sr55 <[email protected]> | 2017-03-17 22:33:48 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-03-17 22:33:48 +0000 |
commit | efabefce58e323bc453aa7f7e65004d8880f9efa (patch) | |
tree | 79505319e9a1b46f6ef77dfc4290364525668a6c /win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs | |
parent | 6c6570a326e12edb04498b3272b916eb8d431319 (diff) |
WinGui: Remove Usage of System.ComponentModel.DataAnnotations - DisplayName as it's not currently compatible with .NET standard.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs index b73829fc8..26ac4883c 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Anamorphic.cs @@ -9,8 +9,6 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
- using System.ComponentModel.DataAnnotations;
-
using HandBrake.ApplicationServices.Attributes;
/// <summary>
@@ -18,16 +16,16 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding /// </summary>
public enum Anamorphic
{
- [Display(Name = "None")]
+ [DisplayName("None")]
[ShortName("none")]
None = 0,
- [Display(Name = "Automatic")]
+ [DisplayName("Automatic")]
[ShortName("auto")]
Automatic = 4,
- [Display(Name = "Loose")]
+ [DisplayName("Loose")]
[ShortName("loose")]
Loose = 2,
- [Display(Name = "Custom")]
+ [DisplayName("Custom")]
[ShortName("custom")]
Custom = 3
}
|