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