microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/Entities/ProductInfoEntity.cs
15lines · 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 ProductInfoEntity : Entity |
| 9 | { |
| 10 | [JsonPropertyName("id")] |
| 11 | [JsonPropertyOrder(3)] |
| 12 | public string? Id { get; set; } |
| 13 | |
| 14 | public ProductInfoEntity() : base("ProductInfo") { } |
| 15 | } |
| 16 | |