microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
next/core

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore.DevTools/Models/MetaData.cs

21lines · 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.Plugins.AspNetCore.DevTools.Models;
7
8public class MetaData
9{
10 [JsonPropertyName("id")]
11 [JsonPropertyOrder(0)]
12 public string? Id { get; set; }
13
14 [JsonPropertyName("name")]
15 [JsonPropertyOrder(1)]
16 public string? Name { get; set; }
17
18 [JsonPropertyName("pages")]
19 [JsonPropertyOrder(2)]
20 public IList<Page> Pages { get; set; } = [];
21}