diff --git a/api/Dictify.Models.DictionaryWord.DefinitionType.html b/api/Dictify.Models.DictionaryWord.DefinitionType.html index 4da371a..4ab7f00 100644 --- a/api/Dictify.Models.DictionaryWord.DefinitionType.html +++ b/api/Dictify.Models.DictionaryWord.DefinitionType.html @@ -114,7 +114,7 @@

Declaration

[JsonProperty("antonyms")]
-public List<string> Antonyms { get; set; }
+public string[] Antonyms { get; set; }
Property Value
@@ -126,7 +126,7 @@
Property Value
- + @@ -210,7 +210,7 @@

Declaration

[JsonProperty("synonyms")]
-public List<string> Synonyms { get; set; }
+public string[] Synonyms { get; set; }
Property Value
List<string>string[]
@@ -222,7 +222,7 @@
Property Value
- + diff --git a/api/Dictify.Models.DictionaryWord.Meaning.html b/api/Dictify.Models.DictionaryWord.Meaning.html index 51c7753..662d8bc 100644 --- a/api/Dictify.Models.DictionaryWord.Meaning.html +++ b/api/Dictify.Models.DictionaryWord.Meaning.html @@ -114,7 +114,7 @@

Declaration

[JsonProperty("antonyms")]
-public List<string> Antonyms { get; set; }
+public string[] Antonyms { get; set; }
Property Value
List<string>string[]
@@ -126,7 +126,7 @@
Property Value
- + @@ -146,7 +146,7 @@

Declaration

[JsonProperty("definitions")]
-public List<DictionaryWord.DefinitionType> Definitions { get; set; }
+public DictionaryWord.DefinitionType[] Definitions { get; set; }
Property Value
List<string>string[]
@@ -158,7 +158,7 @@
Property Value
- + @@ -210,7 +210,7 @@

Declaration

[JsonProperty("synonyms")]
-public List<string> Synonyms { get; set; }
+public string[] Synonyms { get; set; }
Property Value
List<DictionaryWord.DefinitionType>DefinitionType[]
@@ -222,7 +222,7 @@
Property Value
- + diff --git a/api/Dictify.Models.DictionaryWord.html b/api/Dictify.Models.DictionaryWord.html index 344ffcf..3767e32 100644 --- a/api/Dictify.Models.DictionaryWord.html +++ b/api/Dictify.Models.DictionaryWord.html @@ -146,7 +146,7 @@

Declaration

[JsonProperty("meanings")]
-public List<DictionaryWord.Meaning> Meanings { get; set; }
+public DictionaryWord.Meaning[] Meanings { get; set; }
Property Value
List<string>string[]
@@ -158,7 +158,7 @@
Property Value
- + @@ -210,7 +210,7 @@

Declaration

[JsonProperty("phonetics")]
-public List<DictionaryWord.Phonetic> Phonetics { get; set; }
+public DictionaryWord.Phonetic[] Phonetics { get; set; }
Property Value
List<DictionaryWord.Meaning>Meaning[]
@@ -222,7 +222,7 @@
Property Value
- + @@ -242,7 +242,7 @@

Declaration

[JsonProperty("sourceUrls")]
-public List<string> SourceUrls { get; set; }
+public string[] SourceUrls { get; set; }
Property Value
List<DictionaryWord.Phonetic>Phonetic[]
@@ -254,7 +254,7 @@
Property Value
- + diff --git a/index.json b/index.json index 2d6d473..ce0f7a7 100644 --- a/index.json +++ b/index.json @@ -12,7 +12,7 @@ "api/Dictify.Models.DictionaryWord.DefinitionType.html": { "href": "api/Dictify.Models.DictionaryWord.DefinitionType.html", "title": "Class DictionaryWord.DefinitionType | Dictify API - Eofla Internals", - "keywords": "Class DictionaryWord.DefinitionType The definition class Inheritance object DictionaryWord.DefinitionType Namespace: Dictify.Models Assembly: Dictify.dll Syntax public class DictionaryWord.DefinitionType Properties | Edit this page View Source Antonyms List of antonyms based on the definition Declaration [JsonProperty(\"antonyms\")] public List Antonyms { get; set; } Property Value Type Description List | Edit this page View Source Definition Word definition Declaration [JsonProperty(\"definition\")] public string Definition { get; set; } Property Value Type Description string | Edit this page View Source Example Example in sentence Declaration [JsonProperty(\"example\")] public string Example { get; set; } Property Value Type Description string | Edit this page View Source Synonyms List of synonyms based on the definition Declaration [JsonProperty(\"synonyms\")] public List Synonyms { get; set; } Property Value Type Description List" + "keywords": "Class DictionaryWord.DefinitionType The definition class Inheritance object DictionaryWord.DefinitionType Namespace: Dictify.Models Assembly: Dictify.dll Syntax public class DictionaryWord.DefinitionType Properties | Edit this page View Source Antonyms List of antonyms based on the definition Declaration [JsonProperty(\"antonyms\")] public string[] Antonyms { get; set; } Property Value Type Description string[] | Edit this page View Source Definition Word definition Declaration [JsonProperty(\"definition\")] public string Definition { get; set; } Property Value Type Description string | Edit this page View Source Example Example in sentence Declaration [JsonProperty(\"example\")] public string Example { get; set; } Property Value Type Description string | Edit this page View Source Synonyms List of synonyms based on the definition Declaration [JsonProperty(\"synonyms\")] public string[] Synonyms { get; set; } Property Value Type Description string[]" }, "api/Dictify.Models.DictionaryWord.License.html": { "href": "api/Dictify.Models.DictionaryWord.License.html", @@ -22,7 +22,7 @@ "api/Dictify.Models.DictionaryWord.Meaning.html": { "href": "api/Dictify.Models.DictionaryWord.Meaning.html", "title": "Class DictionaryWord.Meaning | Dictify API - Eofla Internals", - "keywords": "Class DictionaryWord.Meaning Word meaning class Inheritance object DictionaryWord.Meaning Namespace: Dictify.Models Assembly: Dictify.dll Syntax public class DictionaryWord.Meaning Properties | Edit this page View Source Antonyms List of antonyms based on the word meaning Declaration [JsonProperty(\"antonyms\")] public List Antonyms { get; set; } Property Value Type Description List | Edit this page View Source Definitions List of word definitions. Words usually come with one or more definitions. Declaration [JsonProperty(\"definitions\")] public List Definitions { get; set; } Property Value Type Description List | Edit this page View Source PartOfSpeech Part of speech, usually noun, verb, adjective, adverb, interjection, etc. Declaration [JsonProperty(\"partOfSpeech\")] public string PartOfSpeech { get; set; } Property Value Type Description string | Edit this page View Source Synonyms List of synonyms based on the word meaning Declaration [JsonProperty(\"synonyms\")] public List Synonyms { get; set; } Property Value Type Description List" + "keywords": "Class DictionaryWord.Meaning Word meaning class Inheritance object DictionaryWord.Meaning Namespace: Dictify.Models Assembly: Dictify.dll Syntax public class DictionaryWord.Meaning Properties | Edit this page View Source Antonyms List of antonyms based on the word meaning Declaration [JsonProperty(\"antonyms\")] public string[] Antonyms { get; set; } Property Value Type Description string[] | Edit this page View Source Definitions List of word definitions. Words usually come with one or more definitions. Declaration [JsonProperty(\"definitions\")] public DictionaryWord.DefinitionType[] Definitions { get; set; } Property Value Type Description DefinitionType[] | Edit this page View Source PartOfSpeech Part of speech, usually noun, verb, adjective, adverb, interjection, etc. Declaration [JsonProperty(\"partOfSpeech\")] public string PartOfSpeech { get; set; } Property Value Type Description string | Edit this page View Source Synonyms List of synonyms based on the word meaning Declaration [JsonProperty(\"synonyms\")] public string[] Synonyms { get; set; } Property Value Type Description string[]" }, "api/Dictify.Models.DictionaryWord.Phonetic.html": { "href": "api/Dictify.Models.DictionaryWord.Phonetic.html", @@ -32,7 +32,7 @@ "api/Dictify.Models.DictionaryWord.html": { "href": "api/Dictify.Models.DictionaryWord.html", "title": "Class DictionaryWord | Dictify API - Eofla Internals", - "keywords": "Class DictionaryWord A dictionary word Inheritance object DictionaryWord Namespace: Dictify.Models Assembly: Dictify.dll Syntax public class DictionaryWord Properties | Edit this page View Source LicenseInfo License information Declaration [JsonProperty(\"license\")] public DictionaryWord.License LicenseInfo { get; set; } Property Value Type Description DictionaryWord.License | Edit this page View Source Meanings Word meanings Declaration [JsonProperty(\"meanings\")] public List Meanings { get; set; } Property Value Type Description List | Edit this page View Source PhoneticWord The base phonetic representation of the word Declaration [JsonProperty(\"phonetic\")] public string PhoneticWord { get; set; } Property Value Type Description string | Edit this page View Source Phonetics The alternative phonetic representations Declaration [JsonProperty(\"phonetics\")] public List Phonetics { get; set; } Property Value Type Description List | Edit this page View Source SourceUrls List of where we got the word information from Declaration [JsonProperty(\"sourceUrls\")] public List SourceUrls { get; set; } Property Value Type Description List | Edit this page View Source Word The actual word Declaration [JsonProperty(\"word\")] public string Word { get; set; } Property Value Type Description string" + "keywords": "Class DictionaryWord A dictionary word Inheritance object DictionaryWord Namespace: Dictify.Models Assembly: Dictify.dll Syntax public class DictionaryWord Properties | Edit this page View Source LicenseInfo License information Declaration [JsonProperty(\"license\")] public DictionaryWord.License LicenseInfo { get; set; } Property Value Type Description DictionaryWord.License | Edit this page View Source Meanings Word meanings Declaration [JsonProperty(\"meanings\")] public DictionaryWord.Meaning[] Meanings { get; set; } Property Value Type Description Meaning[] | Edit this page View Source PhoneticWord The base phonetic representation of the word Declaration [JsonProperty(\"phonetic\")] public string PhoneticWord { get; set; } Property Value Type Description string | Edit this page View Source Phonetics The alternative phonetic representations Declaration [JsonProperty(\"phonetics\")] public DictionaryWord.Phonetic[] Phonetics { get; set; } Property Value Type Description Phonetic[] | Edit this page View Source SourceUrls List of where we got the word information from Declaration [JsonProperty(\"sourceUrls\")] public string[] SourceUrls { get; set; } Property Value Type Description string[] | Edit this page View Source Word The actual word Declaration [JsonProperty(\"word\")] public string Word { get; set; } Property Value Type Description string" }, "api/Dictify.Models.html": { "href": "api/Dictify.Models.html", diff --git a/sitemap.xml b/sitemap.xml index af7c2a8..2573eca 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,55 +2,55 @@ https://aptivi.github.io/Dictify/api/Dictify.Manager.DictionaryManager.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Manager.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Models.DictionaryWord.DefinitionType.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Models.DictionaryWord.License.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Models.DictionaryWord.Meaning.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Models.DictionaryWord.Phonetic.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Models.DictionaryWord.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/api/Dictify.Models.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5 https://aptivi.github.io/Dictify/index.html - 2023-10-25T07:58:46+00:00 + 2023-10-25T08:00:19+00:00 daily 0.5
List<string>string[]