microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/update-release-process

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Api/Entities/ClientInfoEntity.cs

27lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4using System.Text.Json.Serialization;
5
6namespace Microsoft.Teams.Api.Entities;
7
8public 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}