Newsbot.Collector/Newsbot.Collector.Domain/Interfaces/IUserSourceSubscription.cs

8 lines
209 B
C#

using Newsbot.Collector.Domain.Entities;
namespace Newsbot.Collector.Domain.Interfaces;
public interface IUserSourceSubscription
{
List<UserSourceSubscriptionEntity> ListUserSubscriptions(Guid userId);
}