using Newsbot.Collector.Domain.Models; namespace Newsbot.Collector.Domain.Interfaces; public interface IIconsRepository { public void New(IconModel model); public IconModel GetById(Guid id); public IconModel GetBySourceId(Guid id); }