using Esiur.Core; using Esiur.Resource; using System; using System.Collections.Generic; using System.Text; namespace Esiur.Net.IIP { internal class DistributedResourceAttachRequestInfo { public AsyncReply Reply { get; set; } public uint[] RequestSequence { get; set; } public DistributedResourceAttachRequestInfo(AsyncReply reply, uint[] requestSequence) { Reply = reply; RequestSequence = requestSequence; } } }