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

9 lines
217 B
C#
Raw Normal View History

2020-06-11 20:29:16 +02:00
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");
}
}