43 lines
892 B
C#
43 lines
892 B
C#
namespace Common.Hardware.WaterMeter.eRegister.Features
|
|
{
|
|
using System;
|
|
|
|
// TODO: parameters - TBD
|
|
public class RequestLoggingData : Pam
|
|
{
|
|
public RequestLoggingData() : base(6, RequestLoggingData)
|
|
{
|
|
}
|
|
|
|
public Byte Parameter1
|
|
{
|
|
get => this.bytes[1];
|
|
set => this.bytes[1] = value;
|
|
}
|
|
|
|
public Byte Parameter2
|
|
{
|
|
get => this.bytes[2];
|
|
set => this.bytes[2] = value;
|
|
}
|
|
|
|
public Byte Parameter3
|
|
{
|
|
get => this.bytes[3];
|
|
set => this.bytes[3] = value;
|
|
}
|
|
|
|
public Byte Parameter4
|
|
{
|
|
get => this.bytes[4];
|
|
set => this.bytes[4] = value;
|
|
}
|
|
|
|
public Byte Parameter5
|
|
{
|
|
get => this.bytes[5];
|
|
set => this.bytes[5] = value;
|
|
}
|
|
}
|
|
}
|