Skip to content

Locale

LocaleInternal Record

C#
1
2
3
4
5
6
public record LocaleInternal(
    [property: JsonPropertyName("locale")] string Locale,
    [property: JsonPropertyName("region")] string Region,
    [property: JsonPropertyName("webLanguage")] string WebLanguage,
    [property: JsonPropertyName("webRegion")] string WebRegion
);