using System.Collections.Generic; using System.IO; using System.Net.Sockets; using System.Reflection; namespace Adaptation.FileHandlers.TransmissionControlProtocol; #nullable enable internal class Record { public BinaryReader BinaryReader { get; } public BinaryWriter BinaryWriter { get; } public NetworkStream NetworkStream { get; } public PropertyInfo? PropertyInfo { get; } public List ReadTimes { get; } public Record(BinaryReader binaryReader, BinaryWriter binaryWriter, NetworkStream networkStream, PropertyInfo? propertyInfo, List readTimes) { BinaryReader = binaryReader; BinaryWriter = binaryWriter; NetworkStream = networkStream; PropertyInfo = propertyInfo; ReadTimes = readTimes; } }