forked from ddrilling/AsbCloudServer
16 lines
389 B
C#
16 lines
389 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudInfrastructure.Services.Subsystems
|
|||
|
{
|
|||
|
internal class OperationTimeData
|
|||
|
{
|
|||
|
public DateTimeOffset DateTime { get; internal set; }
|
|||
|
public short? Mode { get; internal set; }
|
|||
|
public float? Depth { get; internal set; }
|
|||
|
}
|
|||
|
}
|