microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8e11e5e231765b6fbeae91b4033a354e2340d0af

Branches

Tags

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

Clone

HTTPS

Download ZIP

Samples/Samples.Tab/Body.cs

9lines · modecode

1using System.Text.Json.Serialization;
2
3namespace Samples.Tab;
4
5public class Body
6{
7 [JsonPropertyName("message")]
8 public required string Message { get; set; }
9}