10 lines
256 B
C#
10 lines
256 B
C#
|
|
using LANCommander.Server.Settings.Models;
|
||
|
|
|
||
|
|
namespace LANCommander.Server.Settings;
|
||
|
|
|
||
|
|
public class Settings : SDK.Models.Settings
|
||
|
|
{
|
||
|
|
public ServerSettings Server { get; set; } = new();
|
||
|
|
|
||
|
|
private static DriveInfo[] Drives = DriveInfo.GetDrives();
|
||
|
|
}
|