mirror of
				https://github.com/CommonLoon102/NBloodServerSupervisor.git
				synced 2025-10-30 21:37:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			220 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			220 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Supervisor
 | |
| {
 | |
|     abstract class PacketData
 | |
|     {
 | |
|         public int Port { get; set; }
 | |
|         public bool IsStarted { get; set; }
 | |
|     }
 | |
| }
 | 
