Class LanguageDictionary
- Namespace
- Geotab.Checkmate.ObjectModel
- Assembly
- Geotab.Checkmate.ObjectModel.dll
public class LanguageDictionary
- Inheritance
-
LanguageDictionary
- Inherited Members
Constructors
LanguageDictionary()
Initializes a new instance of the LanguageDictionary class.Constructor.
public LanguageDictionary()
LanguageDictionary(string, Dictionary<string, string>)
Initializes a new instance of the LanguageDictionary class.Constructor.
public LanguageDictionary(string language, Dictionary<string, string> sentenceDictionary)
Parameters
language
stringsentenceDictionary
Dictionary<string, string>The sentence dictionary.
Properties
Language
Gets or sets the language of the sentence.
public string? Language { get; set; }
Property Value
- string
The language of the sentence.
SentenceDictionary
Gets or sets a dictionary of sentences as key and translated sentences as values.
public Dictionary<string, string>? SentenceDictionary { get; set; }
Property Value
- Dictionary<string, string>
A dictionary of sentences as key and translated sentences as values.