8 lines
131 B
C#
8 lines
131 B
C#
namespace Hcs.WebApp.BackgroundServices.DataParsers
|
|
{
|
|
public interface IDataParser
|
|
{
|
|
Task ParseAsync();
|
|
}
|
|
}
|