forked from ddrilling/AsbCloudServer
12 lines
255 B
C#
12 lines
255 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class OperationDetailsDto
|
|||
|
{
|
|||
|
public string OperationName { get; set; }
|
|||
|
public DateTime OperationStartTime { get; set; }
|
|||
|
public double DurationHours { get; set; }
|
|||
|
}
|
|||
|
}
|