Retructured solution
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using LiteCharms.Features.Shop.Notifications.Models;
|
||||
|
||||
namespace LiteCharms.Features.Shop.Notifications;
|
||||
|
||||
public interface INotificationService
|
||||
{
|
||||
Task<Result<Guid>> CreateNotificationAsync(CreateNotification request, CancellationToken cancellationToken = default);
|
||||
Task<Result> UpdateNotificationAsync(UpdateNotification request, CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user