Newsbot.Collector/Newsbot.Collector.Domain/Interfaces/ICollector.cs

9 lines
173 B
C#
Raw Normal View History

using Newsbot.Collector.Domain.Models;
namespace Newsbot.Collector.Domain.Interfaces;
///
public interface ICollector : IHangfireJob
{
List<ArticlesModel> Collect();
}