1
0
mirror of https://github.com/livingcomputermuseum/IFS.git synced 2026-01-28 21:01:05 +00:00
Files
livingcomputermuseum.IFS/PUP/Configuration.cs

29 lines
696 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IFS
{
/// <summary>
/// Encapsulates global server configuration information.
///
/// TODO: read in configuration from a text file.
/// </summary>
public static class Configuration
{
/// <summary>
/// The root directory for the FTP file store.
/// </summary>
public static readonly string FTPRoot = "C:\\ifs\\ftp";
/// <summary>
/// The root directory for the CopyDisk file store.
/// </summary>
public static readonly string CopyDiskRoot = "C:\\ifs\\copydisk";
}
}