38 lines
614 B
C#
38 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Intel.Management.Module
|
|
{
|
|
public class ManagedItem
|
|
{
|
|
|
|
|
|
|
|
protected static readonly string[] _emptyProperties = new string[0];
|
|
|
|
protected ManagedItem() {}
|
|
|
|
public virtual string Name
|
|
{
|
|
get { return string.Empty; }
|
|
}
|
|
|
|
public virtual object Value
|
|
{
|
|
get { return string.Empty; }
|
|
|
|
}
|
|
|
|
public virtual string[] Properties
|
|
{
|
|
get { return _emptyProperties; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|