Black Rock Reporting Azure Function
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }