- Update of ControlBase for partial rendering options - Updating serveral base classes to better asyc event management - separating Enums into different folder - some small bug fixes - removed "CustomEventManagement" cause it doesnt make sense now
19 lines
355 B
C#
19 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TelegramBotBase.Base
|
|
{
|
|
public class InitEventArgs : EventArgs
|
|
{
|
|
public object[] Args { get; set; }
|
|
|
|
public InitEventArgs(params object[] args)
|
|
{
|
|
this.Args = args;
|
|
}
|
|
}
|
|
}
|