16 lines
238 B
C#
16 lines
238 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Intel.Management.PSModule
|
|
{
|
|
class DriveService
|
|
{
|
|
public DriveService(){}
|
|
public virtual void Close() {}
|
|
|
|
|
|
}
|
|
}
|