mirror of
https://github.com/winsw/winsw.git
synced 2025-12-10 18:37:28 +08:00
16 lines
354 B
C#
16 lines
354 B
C#
namespace WinSW
|
|
{
|
|
public sealed class SharedDirectoryMapperConfig
|
|
{
|
|
public string Label { get; }
|
|
|
|
public string UncPath { get; }
|
|
|
|
public SharedDirectoryMapperConfig(string driveLabel, string directoryUncPath)
|
|
{
|
|
this.Label = driveLabel;
|
|
this.UncPath = directoryUncPath;
|
|
}
|
|
}
|
|
}
|