!提交代码
This commit is contained in:
19
WCS.DAL/LocalFile.cs
Normal file
19
WCS.DAL/LocalFile.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WCS.DAL
|
||||
{
|
||||
public static class LocalFile
|
||||
{
|
||||
public static readonly string AppDir = AppDomain.CurrentDomain.BaseDirectory;
|
||||
|
||||
public static readonly string LogDbPath = Path.Combine(AppDir, "data\\log.db3");
|
||||
|
||||
public static readonly string DataDbPath = Path.Combine(AppDir, "data\\data.db3");
|
||||
|
||||
public static readonly string AuthDbPath = Path.Combine(AppDir, "data\\auth.db3");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user