9 lines
216 B
C#
9 lines
216 B
C#
using MemberCenter.Application.Models.Newsletter;
|
|
|
|
namespace MemberCenter.Application.Abstractions;
|
|
|
|
public interface ISubscriptionAdminService
|
|
{
|
|
Task<IReadOnlyList<SubscriptionDto>> ListAsync(int take = 200);
|
|
}
|