This commit is contained in:
chi
2020-12-11 17:53:47 +09:00
parent 0f44fbe9f8
commit bd41902254
60 changed files with 12425 additions and 2853 deletions

View File

@@ -0,0 +1,16 @@
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; }
}
}