mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-01 13:07:52 +00:00
20 lines
485 B
C#
20 lines
485 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace MtApi
|
||
|
|
{
|
||
|
|
public class MtConnectionEventArgs: EventArgs
|
||
|
|
{
|
||
|
|
public MtConnectionState Status { get; private set; }
|
||
|
|
public String ConnectionMessage { get; private set; }
|
||
|
|
|
||
|
|
public MtConnectionEventArgs(MtConnectionState status, string message)
|
||
|
|
{
|
||
|
|
Status = status;
|
||
|
|
ConnectionMessage = message;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|