2026-02-24 20:44:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Notifications.NotificationRules;
|
|
|
|
|
|
|
|
|
|
|
|
public class NotificationRuleDto : FullAuditedEntityDto<Guid>
|
|
|
|
|
|
{
|
2026-05-11 09:37:52 +00:00
|
|
|
|
public Guid? NotificationTypeId { get; set; }
|
2026-02-24 20:44:16 +00:00
|
|
|
|
public string? RecipientType { get; set; }
|
|
|
|
|
|
public string? RecipientId { get; set; } //UserId, RoleId, OrganizationUnitId
|
|
|
|
|
|
public string? Channel { get; set; }
|
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
|
public bool IsFixed { get; set; }
|
|
|
|
|
|
public bool IsCustomized { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|