Update running time exec

This commit is contained in:
2025-09-14 23:02:42 +07:00
parent c60bc4123a
commit 37d57a1bb8
8 changed files with 47 additions and 59 deletions

View File

@@ -14,7 +14,7 @@ public interface ICandleStoreGrain : IGrainWithStringKey
/// Gets the current list of historical candles (up to 500 most recent)
/// </summary>
/// <returns>List of candles ordered by date</returns>
Task<List<Candle>> GetCandlesAsync();
Task<HashSet<Candle>> GetCandlesAsync();
Task<Candle> GetLastCandle();
}