mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 19:42:58 +00:00
21 lines
541 B
C#
21 lines
541 B
C#
using Esiur.Core;
|
|
using Esiur.Resource;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Net.IIP
|
|
{
|
|
internal class DistributedResourceAttachRequestInfo
|
|
{
|
|
public AsyncReply<DistributedResource> Reply { get; set; }
|
|
public uint[] RequestSequence { get; set; }
|
|
|
|
public DistributedResourceAttachRequestInfo(AsyncReply<DistributedResource> reply, uint[] requestSequence)
|
|
{
|
|
Reply = reply;
|
|
RequestSequence = requestSequence;
|
|
}
|
|
}
|
|
}
|