using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Shared
{
///
/// ³¡¾°
///
[System.Serializable]
public class Series:Common
{
public Series()
: base()
{
this.Type = DeviceType.Series;
}
///
/// ÇøºÅ
///
public byte ZoneNumber;
///
/// ϵÁкÅ
///
public byte SeriesNumber;
}
}