Quasar/Server/Core/Data/RemoteDrive.cs

16 lines
373 B
C#

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