erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/NotificationRules/NotificationRuleDto.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

15 lines
506 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Notifications.NotificationRules;
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; }
}