forked from ddrilling/AsbCloudServer
14 lines
328 B
C#
14 lines
328 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class OperationDto
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public DateTime Begin { get; set; }
|
|||
|
public DateTime End { get; set; }
|
|||
|
public double OperationStartDepth { get; set; }
|
|||
|
public double OperationEndDepth { get; set; }
|
|||
|
}
|
|||
|
}
|