| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading.Tasks;
-
- namespace BlackRockReportFunction.Models
- {
- internal class Child
- {
-
- public int duration { get; set; }
- public string _id { get; set; }
- public string name { get; set; } //description
- public List<object> amounts { get; set; }
- }
- }
|