microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Api/Activities/Events/ReadReceiptActivity.cs
17lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using Microsoft.Teams.Common; |
| 5 | |
| 6 | namespace Microsoft.Teams.Api.Activities.Events; |
| 7 | |
| 8 | public partial class Name : StringEnum |
| 9 | { |
| 10 | public static readonly Name ReadReceipt = new("application/vnd.microsoft.readReceipt"); |
| 11 | public bool IsReadReceipt => ReadReceipt.Equals(Value); |
| 12 | } |
| 13 | |
| 14 | public class ReadReceiptActivity() : EventActivity(Name.ReadReceipt) |
| 15 | { |
| 16 | |
| 17 | } |