forked from ddrilling/AsbCloudServer
15 lines
323 B
C#
15 lines
323 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class TelemetryInfoDto
|
|
{
|
|
public DateTime Date { get; set; }
|
|
public string Caption { get; set; }
|
|
public string Cluster { get; set; }
|
|
public string Deposit { get; set; }
|
|
}
|
|
}
|