summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs
index 0140c5678..b8eab8dad 100644
--- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs
+++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Container.cs
@@ -10,7 +10,8 @@
namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
using System;
- using System.ComponentModel.DataAnnotations;
+
+ using HandBrake.ApplicationServices.Attributes;
/// <summary>
/// The container.
@@ -20,9 +21,9 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
None = 0x0,
- [Display(Name = "MP4")]
+ [DisplayName("MP4")]
MP4,
- [Display(Name = "MKV")]
+ [DisplayName("MKV")]
MKV
}
}