17 lines
		
	
	
		
			380 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			380 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace JobReportMailService
 | |
| {
 | |
|     public class ReportUserData
 | |
|     {
 | |
|         public DateTime date { get; set; }
 | |
|         public string uid { get; set; }
 | |
|         public string uname { get; set; }
 | |
|         public double hrs { get; set; }
 | |
|     }
 | |
| }
 | 
