10 lines
222 B
C#
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}";
|
|
}
|
|
}
|