microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
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 | |
| 4 | using Microsoft.Teams.Common.Json; |
| 5 | |
| 6 | namespace Microsoft.Teams.Plugins.AspNetCore.DevTools; |
| 7 | |
| 8 | [TrueTypeJson<IEvent>] |
| 9 | public interface IEvent |
| 10 | { |
| 11 | public Guid Id { get; } |
| 12 | public string Type { get; } |
| 13 | public object? Body { get; } |
| 14 | public DateTime SentAt { get; } |
| 15 | } |