sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/NotificationRules/INotificationRuleAppService.cs

23 lines
664 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
namespace Sozsoft.Notifications.NotificationRules;
public interface INotificationRuleAppService : ICrudAppService<
NotificationRuleDto,
Guid,
PagedAndSortedResultRequestDto,
CreateUpdateNotificationRuleDto>
{
string[] GetNotificationTypes();
Task<string[]> GetMyNotificationTypesAsync();
Task<List<NotificationRuleDto>> GetMyNotificationRules();
Task PostMyNotificationRule(CreateUpdateNotificationRuleDto Input);
Task DeleteMyNotificationRules(string NotificationType);
}