- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BlackRockReportFunction.Models
- {
- internal class ClockifyReport
- {
- string ReportName { get; set; }
- string ReportDescription { get; set; }
- List<Person> reportPeople { get; set; }
- }
- }
|