- replacing the default EventArgs within the Completed event with a more detailed one - adding new PromptDialogCompletedEventArgs class for easier details access
15 lines
250 B
C#
15 lines
250 B
C#
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; }
|
|
|
|
}
|
|
}
|