sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/NotificationRules/NotificationRuleDto.cs
2026-05-11 12:37:52 +03:00

16 lines
510 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Notifications.NotificationRules;
public class NotificationRuleDto : FullAuditedEntityDto<Guid>
{
public Guid? NotificationTypeId { 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; }
}