17 lines
372 B
C#
17 lines
372 B
C#
using Articulate_Network.Packets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Articulate_Network.Events
|
|
{
|
|
public class DataReceivedEventArgs : EventArgs
|
|
{
|
|
public TcpClient Client { get; set; }
|
|
public Packet Packet { get; set; }
|
|
}
|
|
}
|