31 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			507 B
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     /// <summary> | |||
|  |     /// 办理步骤项 | |||
|  |     /// </summary> | |||
|  |     public class HandleStep | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         /// 步骤ID | |||
|  |         /// </summary> | |||
|  |         public string Id | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 步骤名称 | |||
|  |         /// </summary> | |||
|  |         public string Name | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | } |