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