38 lines
		
	
	
		
			573 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			573 B
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Model
 | |
| {
 | |
|     public class SpTDesktopItem
 | |
|     {
 | |
|        /// <summary>
 | |
|        /// 导航定义项
 | |
|        /// </summary>
 | |
|        public string Name
 | |
|        {
 | |
|            get;
 | |
|            set;
 | |
|        }
 | |
| 
 | |
|        /// <summary>
 | |
|        /// 类型
 | |
|        /// </summary>
 | |
|        public string ID
 | |
|        {
 | |
|            get;
 | |
|            set;
 | |
|        }
 | |
| 
 | |
|        /// <summary>
 | |
|        /// 路径
 | |
|        /// </summary>
 | |
|        public string URL
 | |
|        {
 | |
|            get;
 | |
|            set;
 | |
|        }
 | |
|     }
 | |
| }
 |