Files
BeWoPlaner/SharedLauncher/Information/BeWoPathFileConfig.cs
2022-08-30 09:12:20 +02:00

24 lines
788 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 zipName = "bewo{0}.zip";
private static readonly string dotbewoinfo = ".bewoinfo";
private static readonly string latestFileName = "latest";
public static string LockFileName => lockFileName;
public static string ZipFormatName => zipName;
public static string DotBeWoInfo => dotbewoinfo;
public static string LatestBeWoInfo => latestFileName + DotBeWoInfo;
}
}