17 lines
		
	
	
		
			525 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			525 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace VNCServerList.Models
 | |
| {
 | |
|     public class VNCServer
 | |
|     {
 | |
|         public string User { get; set; }
 | |
|         public string IP { get; set; }
 | |
|         public string Category { get; set; }
 | |
|         public string Title { get; set; }
 | |
|         public string Description { get; set; }
 | |
|         public string Password { get; set; }
 | |
|         public string Argument { get; set; }
 | |
|         public byte[] Icon { get; set; }
 | |
|         public string IconBase64 { get; set; } // Base64 인코딩된 아이콘 데이터
 | |
|     }
 | |
| }  | 
