output-service-tsdb/Models/ApiObject.cs

16 lines
269 B
C#
Raw Normal View History

2020-04-08 02:04:22 +02:00
using System;
namespace OutputServiceTSDB.Models
{
public class ApiObject
{
public DateTime Date { get; set; }
public string Tag { get; set; }
public bool Decision { get; set; }
public double Confidence { get; set; }
}
}