Black Rock Reporting Azure Function
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Child.cs 437B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace BlackRockReportFunction.Models
  8. {
  9. internal class Child
  10. {
  11. public int duration { get; set; }
  12. public string _id { get; set; }
  13. public string name { get; set; } //description
  14. public List<object> amounts { get; set; }
  15. }
  16. }