2021-06-08 20:57:54 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DataClient.Struct
|
|
|
|
|
{
|
|
|
|
|
public class TechCycle
|
|
|
|
|
{
|
2024-09-22 04:27:05 +05:00
|
|
|
|
public DateTime StartDateTime { get; set; }
|
|
|
|
|
public sbyte? Index { get; set; }
|
2021-06-08 20:57:54 +05:00
|
|
|
|
}
|
|
|
|
|
}
|