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.
|
using System.Collections.Generic;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
public class AuxiliaryPower : ASDU
|
|
{
|
|
/// <summary>
|
|
///打开辅助电源标志
|
|
/// </summary>
|
|
public byte OpenFlag { get; set; }
|
|
|
|
public AuxiliaryPower(byte openFlag)
|
|
{
|
|
this.OpenFlag = openFlag;
|
|
}
|
|
|
|
|
|
}
|
|
} |