- adding basic paging options - adding GetOrigin method to find control or form who has sent a message - adding Test for MultiView
21 lines
324 B
C#
21 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TelegramBotBase.Args
|
|
{
|
|
public class RenderViewEventArgs : EventArgs
|
|
{
|
|
public int CurrentView { get; set; }
|
|
|
|
|
|
public RenderViewEventArgs(int ViewIndex)
|
|
{
|
|
|
|
CurrentView = ViewIndex;
|
|
}
|
|
|
|
|
|
}
|
|
}
|