microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/Entities/ClientInfoEntity.cs
27lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using System.Text.Json.Serialization; |
| 5 | |
| 6 | namespace Microsoft.Teams.Api.Entities; |
| 7 | |
| 8 | public class ClientInfoEntity : Entity |
| 9 | { |
| 10 | [JsonPropertyName("locale")] |
| 11 | [JsonPropertyOrder(3)] |
| 12 | public string? Locale { get; set; } |
| 13 | |
| 14 | [JsonPropertyName("country")] |
| 15 | [JsonPropertyOrder(4)] |
| 16 | public string? Country { get; set; } |
| 17 | |
| 18 | [JsonPropertyName("platform")] |
| 19 | [JsonPropertyOrder(5)] |
| 20 | public string? Platform { get; set; } |
| 21 | |
| 22 | [JsonPropertyName("timezone")] |
| 23 | [JsonPropertyOrder(6)] |
| 24 | public string? Timezone { get; set; } |
| 25 | |
| 26 | public ClientInfoEntity() : base("clientInfo") { } |
| 27 | } |