Quasar/Server/Core/Utilities/RemoteDrive.cs

16 lines
378 B
C#
Raw Normal View History

namespace xServer.Core.Utilities
{
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;
}
}
}