mirror of
				https://github.com/esiur/esiur-dotnet.git
				synced 2025-10-31 16:01:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			364 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			364 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Esiur.Net.Packets
 | |
| {
 | |
|     public enum IIPAuthPacketIAuthHeader : byte
 | |
|     {
 | |
|         Reference = 0,
 | |
|         Destination = 1,
 | |
|         Clue = 2,
 | |
|         RequiredFormat = 3,
 | |
|         ContentFormat = 4,
 | |
|         Content = 5,
 | |
|         Trials = 6,
 | |
|         Issue = 7,
 | |
|         Expire = 8,
 | |
|     }
 | |
| }
 |