mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
12 lines
295 B
C#
12 lines
295 B
C#
namespace CarCareTracker.Helper
|
|
{
|
|
/// <summary>
|
|
/// helper method for static vars
|
|
/// </summary>
|
|
public static class StaticHelper
|
|
{
|
|
public static string DbName = "data/cartracker.db";
|
|
public static string UserConfigPath = "config/userConfig.json";
|
|
}
|
|
}
|