68 lines
1.4 KiB
C#
68 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using ApiServer.Structures;
|
|
using ApiServer.Parametrs;
|
|
|
|
namespace ApiServer.ApiStruct
|
|
{
|
|
public class DateGetAnalogApi
|
|
{
|
|
public int Vdp { get; set; }
|
|
public int Index { get; set; }
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
}
|
|
public class DateGetAnalogClient
|
|
{
|
|
public Analog[] Analog { get; set; }
|
|
}
|
|
|
|
public class DateGetAnalogsApi
|
|
{
|
|
public int Vdp { get; set; }
|
|
public int[] Index { get; set; }
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
}
|
|
public class DateGetAnalogsClient
|
|
{
|
|
public AnalogArr[] Analogs { get; set; }
|
|
}
|
|
|
|
public class DateGetTechCycleApi
|
|
{
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
public int Vdp { get; set; }
|
|
}
|
|
public class DateGetTechCycleClient
|
|
{
|
|
public TechCycle[] TechCycle { get; set; }
|
|
}
|
|
|
|
public class DateGetProtectApi
|
|
{
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
public int Vdp { get; set; }
|
|
}
|
|
public class DateGetProtectClient
|
|
{
|
|
public Protect[] Protect { get; set; }
|
|
}
|
|
|
|
public class DateGetDiscretApi
|
|
{
|
|
public int Vdp { get; set; }
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
}
|
|
public class DateGetDiscretClient
|
|
{
|
|
public Discret[] Discret { get; set; }
|
|
}
|
|
|
|
}
|