23 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Intel.Management.PSModule
{
class DriveEntry : DriveItem
{
public DriveEntry(string name, object value, DriveItem parent)
: base(name, value, parent)
{
}
public override object GetReturnObject()
{
return new NameValuePairItem(Name, Value);
}
}
}