22 lines
613 B
C#
22 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WCS.DAL
|
|
{
|
|
public static class DbPath
|
|
{
|
|
public static readonly string AppDir = AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
public static readonly string DataPath = Path.Combine(AppDir, "data");
|
|
|
|
public static readonly string LogDbPath = Path.Combine(DataPath, "log.db3");
|
|
|
|
public static readonly string DataDbPath = Path.Combine(DataPath, "data.db3");
|
|
|
|
public static readonly string AuthDbPath = Path.Combine(DataPath, "auth.db3");
|
|
}
|
|
}
|