Save last

This commit is contained in:
2024-09-22 04:27:05 +05:00
parent 0e645d20e2
commit ef797b23df
377 changed files with 14540 additions and 5819 deletions

View File

@@ -8,34 +8,7 @@ namespace DataClient.Struct
{
public class TechCycle
{
public enum Oper : sbyte
{
errno = sbyte.MinValue,
end_cycle_manual = -1,
end_cycle = 0,
unload_load = 1,
vac_priv = 2,
priv = 5,
cool_priv = 6,
look_priv = 7,
vac_plav = 8,
melt_bath = 9,
plav = 10,
VUR = 11,
cool_plav = 12,
unload_kit = 13,
vac_oplav = 14,
oplav = 15,
cool_oplav = 16,
flow_metal = 17,
check_protect = 25
}
public DateTime start;
public sbyte? index;
public Oper Operation {
get { return (index.HasValue && Enum.IsDefined(typeof(Oper), index.Value)) ? (Oper)index : Oper.errno; }
set { index = (sbyte)value; }
}
public DateTime StartDateTime { get; set; }
public sbyte? Index { get; set; }
}
}

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataClient.Struct
{
public class TechCyclesParams
{
public sbyte[] Index { get; set; }
public string[] Colors { get; set; }
public string[] Names { get; set; }
public TechCyclesParams()
{
}
}
}

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataClient.Struct
{
public class TechCycles
{
public DateTime StartDateTime { get; set; }
public sbyte? Index { get; set; }
}
}