mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-10-30 23:51:34 +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;
 | |
|         }   
 | |
|     }
 | |
| }
 |