Files
hcs/Hcs.WebApp/BackgroundServices/ResultGetters/IResultGetter.cs

8 lines
155 B
C#

namespace Hcs.WebApp.BackgroundServices.ResultGetters
{
public interface IResultGetter
{
Task<ResultGetterResponse> GetAsync();
}
}