You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
897 B

using System;
namespace BatCharging.Model
{
public class QueryPeakValleyTimeRes:ASDU
{
public byte TimeCount { get; set; }
public Int16 StartTime1 { get; set; }
public byte FlagOfTime1 { get; set; }
public Int16 StartTime2 { get; set; }
public byte FlagOfTime2 { get; set; }
public Int16 StartTime3 { get; set; }
public byte FlagOfTime3 { get; set; }
public Int16 StartTime4 { get; set; }
public byte FlagOfTime4 { get; set; }
public Int16 StartTime5 { get; set; }
public byte FlagOfTime5 { get; set; }
public Int16 StartTime6 { get; set; }
public byte FlagOfTime6 { get; set; }
public Int16 StartTime7 { get; set; }
public byte FlagOfTime7 { get; set; }
public Int16 StartTime8 { get; set; }
public byte FlagOfTime8 { get; set; }
}
}