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/Event.cs

15lines · modecode

1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
4using Microsoft.Teams.Common.Json;
5
6namespace Microsoft.Teams.Plugins.AspNetCore.DevTools;
7
8[TrueTypeJson<IEvent>]
9public interface IEvent
10{
11 public Guid Id { get; }
12 public string Type { get; }
13 public object? Body { get; }
14 public DateTime SentAt { get; }
15}