8 lines
		
	
	
		
			219 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			219 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace MareSynchronos.MareConfiguration.Models;
 | |
| 
 | |
| [Serializable]
 | |
| public class ServerBlockStorage
 | |
| {
 | |
|     public List<string> Whitelist { get; set; } = new();
 | |
|     public List<string> Blacklist { get; set; } = new();
 | |
| } | 
