-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrive.cs
37 lines (31 loc) · 801 Bytes
/
Drive.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
namespace DiskSpace
{
/// <summary>
/// Drive info
/// </summary>
public class Drive
{
#region Public properties
/// <summary>
/// Drive name
/// </summary>
public string DriveName { get; set; }
/// <summary>
/// Description
/// </summary>
public string Description { get; set; }
#endregion
#region Internal constructor
/// <summary>
/// Drive constructor
/// </summary>
/// <param name="driveName"></param>
/// <param name="description"></param>
internal Drive(string driveName, string description)
{
DriveName = driveName;
Description = description;
}
#endregion
}
}