summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Language.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/interop/Language.cs')
-rw-r--r--win/C#/interop/Language.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/win/C#/interop/Language.cs b/win/C#/interop/Language.cs
deleted file mode 100644
index 609a4ec64..000000000
--- a/win/C#/interop/Language.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-namespace HandBrake.Interop
-{
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- /// <summary>
- /// Represents a language.
- /// </summary>
- public class Language
- {
- /// <summary>
- /// Initializes a new instance of the Language class.
- /// </summary>
- /// <param name="code">The code for the langauge.</param>
- public Language(string code)
- {
- this.Code = code;
- }
-
- /// <summary>
- /// Gets the friendly name of the language.
- /// </summary>
- public string Name
- {
- get
- {
- return LanguageCodes.Decode(this.Code);
- }
- }
-
- /// <summary>
- /// Gets or sets the language code.
- /// </summary>
- public string Code { get; set; }
- }
-}