Black Rock Reporting Azure Function
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ClockifyRecord.cs 469B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Newtonsoft.Json;
  7. using BlackRockReportFunction.Helpers;
  8. namespace BlackRockReportFunction.Models
  9. {
  10. public class ClockifyRecord
  11. {
  12. public string recordDescription { get; set; }
  13. [JsonConverter(typeof(TimeOnlyConverter))]
  14. public TimeOnly recordTime { get; set; }
  15. public decimal amount { get; set; }
  16. }
  17. }