Files

8 lines
131 B
C#

namespace Hcs.WebApp.BackgroundServices.DataParsers
{
public interface IDataParser
{
Task ParseAsync();
}
}