Files
lubelog/Helper/StaticHelper.cs
2024-01-06 15:44:07 -07:00

11 lines
223 B
C#

namespace CarCareTracker.Helper
{
/// <summary>
/// helper method for static vars
/// </summary>
public static class StaticHelper
{
public static string DbName = "data/cartracker.db";
}
}