This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
trainav/bahnplan.web/Variables.cs
2020-06-12 18:19:28 +02:00

9 lines
217 B
C#

using System;
using System.IO;
namespace bahnplan.web {
public class Variables {
public const string DataDir = "data";
public static readonly string TicketDir = Path.Combine(DataDir, "tickets");
}
}