16 lines
		
	
	
		
			307 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			307 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace AIMS.OremrUserControl
 | |
| {
 | |
|      [Serializable]
 | |
|     public class RoomCard
 | |
|     {
 | |
|         public int Id { get; set; }
 | |
|         public string RoomName { get; set; }
 | |
|         public int UseCount { get; set; }
 | |
|     }
 | |
| }
 |