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