Files
BeWoPlaner/SharedLauncher/Information/BeWoPathFileConfig.cs

26 lines
932 B
C#
Raw Normal View History

2022-08-30 09:12:20 +02:00
using BS.SharedLauncher.Extensions;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.Information
{
public static class BeWoPathFileConfig
{
private static readonly string lockFileName = "_lock";
private static readonly string dotbewoinfo = ".bewoplan";
2022-08-30 09:12:20 +02:00
private static readonly string latestFileName = "latest";
2022-09-14 10:57:51 +02:00
private static readonly string subdir = "BeWoPlaner";
2022-12-14 12:08:20 +01:00
private static readonly string testForPermission = "bewo.permission.test";
2022-08-30 09:12:20 +02:00
public static string LockFileName => lockFileName;
public static string DotBeWoInfo => dotbewoinfo;
2022-09-14 10:57:51 +02:00
public static string LatestBeWoInfo => latestFileName + DotBeWoInfo;
public static string SubDirectory => subdir;
public static string TestForPermissionFile => testForPermission;
2022-08-30 09:12:20 +02:00
}
}