21 lines
491 B
C#
21 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_meteorological_station
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<meteorological_stationData> data { get; set; }
|
|
}
|
|
public class meteorological_stationData
|
|
{
|
|
public string name { get; set; }
|
|
public decimal value { get; set; }
|
|
}
|
|
}
|