11 lines
248 B
C#
11 lines
248 B
C#
|
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);
|
||
|
}
|