21 lines
655 B
C#
21 lines
655 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Common
|
|||
|
|
{
|
|||
|
|
public class grafana_data
|
|||
|
|
{
|
|||
|
|
public string? device_id { get; set; } = "80";
|
|||
|
|
public string? device_status { get; set; } = "0";
|
|||
|
|
public string? realtime_value { get; set; }= "0";
|
|||
|
|
public string? environment_value { get; set; }="0";
|
|||
|
|
public string? mcu_temperature { get; set; } = "0";
|
|||
|
|
public string? sensor_temperature { get; set; }= "0";
|
|||
|
|
public string? sensor_humidity { get; set; } = "0";
|
|||
|
|
public string? adc_raw_value { get; set; } = "0";
|
|||
|
|
}
|
|||
|
|
}
|