Merge branch 'report' into dev

This commit is contained in:
Mikhail Trubnikov
2026-05-19 09:51:51 +10:00
43 changed files with 695 additions and 339 deletions

View File

@@ -94,6 +94,14 @@
/// <returns></returns>
Task<T?> GetHashFieldAsync<T>(string hashKey, string field);
/// <summary>
/// Получить случайную первую запись из Hash
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="hashKey"></param>
/// <returns></returns>
Task<(string Field, T? Value)?> GetFirstHashFieldAsync<T>(string hashKey);
/// <summary>
/// Получить все значения из Hash
/// </summary>