microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Common/Json/TrueTypeJsonAttribute.cs
11lines · 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.Common.Json; |
| 7 | |
| 8 | public class TrueTypeJsonAttribute<T>() : JsonConverterAttribute(typeof(TrueTypeJsonConverter<T>)) where T : notnull |
| 9 | { |
| 10 | |
| 11 | } |