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

22 lines
669 B
C#
Raw 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>
{
2026-05-11 09:37:52 +00:00
Task<string[]> GetNotificationTypes();
2026-02-24 20:44:16 +00:00
Task<string[]> GetMyNotificationTypesAsync();
Task<List<NotificationRuleDto>> GetMyNotificationRules();
Task PostMyNotificationRule(CreateUpdateNotificationRuleDto Input);
2026-05-11 09:37:52 +00:00
Task DeleteMyNotificationRules(Guid NotificationTypeId);
2026-02-24 20:44:16 +00:00
}