Adding more details to PromptDialog

- replacing the default EventArgs within the Completed event with a more detailed one
- adding new PromptDialogCompletedEventArgs class for easier details access
This commit is contained in:
FlorianDahn
2021-03-29 23:51:39 +02:00
parent 92f12735c8
commit c8936d0748
2 changed files with 30 additions and 4 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace TelegramBotBase.Args
{
public class PromptDialogCompletedEventArgs
{
public object Tag { get; set; }
public String Value { get; set; }
}
}