|
123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- using BlackRockReportFunction.Helpers;
-
- namespace BlackRockReportFunction.Models
- {
- public class ClockifyRecord
- {
- public string recordDescription { get; set; }
- [JsonConverter(typeof(TimeOnlyConverter))]
- public TimeOnly recordTime { get; set; }
- public decimal amount { get; set; }
- }
- }
|