using System; using System.Collections.Generic; namespace Shared { [System.Serializable] public class DeviceCommon : Common { public DeviceCommon () { Type = DeviceType.DeviceCommon; } public List SubDevcieList; } }