erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Application.Contracts/NotificationRules/NotificationRuleDto.cs

17 lines
506 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Notifications.NotificationRules;
2025-05-06 06:45:49 +00:00
public class NotificationRuleDto : FullAuditedEntityDto<Guid>
{
public string? NotificationType { get; set; }
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; }
}
2025-11-11 19:49:52 +00:00