mirror of https://github.com/quasar/Quasar.git
16 lines
373 B
C#
16 lines
373 B
C#
![]() |
namespace xServer.Core.Misc
|
|||
|
{
|
|||
|
public class RemoteDrive
|
|||
|
{
|
|||
|
public string DisplayName { get; private set; }
|
|||
|
|
|||
|
public string RootDirectory { get; private set; }
|
|||
|
|
|||
|
public RemoteDrive(string displayName, string rootDirectory)
|
|||
|
{
|
|||
|
this.DisplayName = displayName;
|
|||
|
this.RootDirectory = rootDirectory;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|