DD.WellWorkover.Cloud/AsbCloudApp/Data/TelemetryInfoDto.cs

15 lines
323 B
C#
Raw Normal View History

2021-04-07 18:01:56 +05:00
using System;
using System.Collections.Generic;
using System.Text;
namespace AsbCloudApp.Data
{
public class TelemetryInfoDto
{
public DateTime Date { get; set; }
2021-04-07 18:01:56 +05:00
public string Caption { get; set; }
public string Cluster { get; set; }
public string Deposit { get; set; }
}
}