25 lines
497 B
C#
25 lines
497 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_data
|
|
{
|
|
public b b { get; set; }
|
|
}
|
|
public class b
|
|
{
|
|
public List<dvl> dvl { get; set; }
|
|
public DateTime ts { get; set; }
|
|
}
|
|
public class dvl
|
|
{
|
|
public string da { get; set; }
|
|
public Dictionary<string, decimal?> dl { get; set; }
|
|
}
|
|
}
|