TelegramBotFramework/TelegramBotBase/Base/SystemCallEventArgs.cs
FlorianDahn aa53dc9386 - adding a lot of english translations
- switching german to english
- some bug fixes in device sessions and improvements
- adding xml documentation
2019-02-22 16:35:35 +01:00

37 lines
749 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TelegramBotBase.Sessions;
namespace TelegramBotBase.Base
{
/// <summary>
/// Base class for given system call results
/// </summary>
public class SystemCallEventArgs : EventArgs
{
public String Command { get; set; }
public long DeviceId { get; set; }
public DeviceSession Device {get;set;}
public SystemCallEventArgs()
{
}
public SystemCallEventArgs(String Command, long DeviceId, DeviceSession Device)
{
this.Command = Command;
this.DeviceId = DeviceId;
this.Device = Device;
}
}
}