using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BlackRockReportFunction.Models { public class ClockifyRecord { public string recordDescription { get; set; } public TimeOnly recordTime { get; set; } public decimal amount { get; set; } } }