Files
home-data-collection-tools/src/Solar.Api/Constants/CacheKeys.cs

10 lines
222 B
C#

namespace Solar.Api.Constants;
internal static class CacheKeys
{
public static string GetMonthSummaryCacheKey(string source, int year, int month)
{
return $"month-summary-{source}-{year}-{month}";
}
}