microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

15lines · 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 ProductInfoEntity : Entity
9{
10 [JsonPropertyName("id")]
11 [JsonPropertyOrder(3)]
12 public string? Id { get; set; }
13
14 public ProductInfoEntity() : base("ProductInfo") { }
15}
16