15 lines
251 B
C#
15 lines
251 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Thousandto.Core.Base
|
|
{
|
|
/// <summary>
|
|
/// 硬盘的信息接口
|
|
/// </summary>
|
|
public interface IDiskInfo
|
|
{
|
|
double GetFreeDiskspace();
|
|
}
|
|
}
|