예제 #1
0
 public Echo(int id, string text, ApiChat apiChat, EchoOptions echoOptions)
 {
     _apiChat     = apiChat;
     _echoOptions = echoOptions;
     _id          = id;
     Text         = text;
 }
예제 #2
0
 internal CallContext(ApiChat apiChat, Update update, object userState, UserInChat userInChat)
 {
     _apiChat   = apiChat;
     UserInChat = userInChat;
     UserState  = userState;
     Update     = update;
 }
예제 #3
0
 public ChatException(ApiChat chat, string message, Exception innerException) : base(message, innerException)
 {
     Chat = chat;
 }