10 lines
		
	
	
		
			249 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace MareSynchronos.MareConfiguration;
 | |
| 
 | |
| [Serializable]
 | |
| public record Authentication
 | |
| {
 | |
|     public string CharacterName { get; set; } = string.Empty;
 | |
|     public uint WorldId { get; set; } = 0;
 | |
|     public int SecretKeyIdx { get; set; } = -1;
 | |
| }
 | 
