| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System.Collections.Generic; |
| | 4 | |
|
| | 5 | | namespace MediaBrowser.Model.Globalization |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// Class CultureDto. |
| | 9 | | /// </summary> |
| | 10 | | public class CultureDto |
| | 11 | | { |
| | 12 | | public CultureDto(string name, string displayName, string twoLetterISOLanguageName, IReadOnlyList<string> threeL |
| | 13 | | { |
| | 14 | | Name = name; |
| | 15 | | DisplayName = displayName; |
| | 16 | | TwoLetterISOLanguageName = twoLetterISOLanguageName; |
| | 17 | | ThreeLetterISOLanguageNames = threeLetterISOLanguageNames; |
| 9328 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Gets the name. |
| | 22 | | /// </summary> |
| | 23 | | /// <value>The name.</value> |
| | 24 | | public string Name { get; } |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// Gets the display name. |
| | 28 | | /// </summary> |
| | 29 | | /// <value>The display name.</value> |
| | 30 | | public string DisplayName { get; } |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Gets the name of the two letter ISO language. |
| | 34 | | /// </summary> |
| | 35 | | /// <value>The name of the two letter ISO language.</value> |
| | 36 | | public string TwoLetterISOLanguageName { get; } |
| | 37 | |
|
| | 38 | | /// <summary> |
| | 39 | | /// Gets the name of the three letter ISO language. |
| | 40 | | /// </summary> |
| | 41 | | /// <value>The name of the three letter ISO language.</value> |
| | 42 | | public string? ThreeLetterISOLanguageName |
| | 43 | | { |
| | 44 | | get |
| | 45 | | { |
| 26 | 46 | | var vals = ThreeLetterISOLanguageNames; |
| 26 | 47 | | if (vals.Count > 0) |
| | 48 | | { |
| 26 | 49 | | return vals[0]; |
| | 50 | | } |
| | 51 | |
|
| 0 | 52 | | return null; |
| | 53 | | } |
| | 54 | | } |
| | 55 | |
|
| | 56 | | public IReadOnlyList<string> ThreeLetterISOLanguageNames { get; } |
| | 57 | | } |
| | 58 | | } |