lubelog/Helper/StaticHelper.cs
2024-01-06 15:47:21 -07:00

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";
}
}