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.

20 lines
334 B

using System.Collections.Generic;
namespace BatCharging.Model
{
public class QueryVersion : ASDU
{
/// <summary>
///版本号查询
/// </summary>
public byte Query { get; set; } = 1;
public QueryVersion(byte query)
{
this.Query = query;
}
}
}