soundbeam – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Net.Sockets;
5 using System.Text;
6 using System.Threading.Tasks;
7  
8 namespace SoundBeam
9 {
10 public class TcpClientConnectedEventArgs : EventArgs
11 {
12 public TcpClient TcpClient;
13  
14 public TcpClientConnectedEventArgs(TcpClient client) => TcpClient = client;
15 }
16 }