Files
BeWoPlaner/SharedLauncher/Information/BeWoPathFileConfig.cs

26 lines
932 B
C#

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";
private static readonly string latestFileName = "latest";
private static readonly string subdir = "BeWoPlaner";
private static readonly string testForPermission = "bewo.permission.test";
public static string LockFileName => lockFileName;
public static string DotBeWoInfo => dotbewoinfo;
public static string LatestBeWoInfo => latestFileName + DotBeWoInfo;
public static string SubDirectory => subdir;
public static string TestForPermissionFile => testForPermission;
}
}