WorkflowAuditNotificationData.cs 641 B

123456789101112131415161718192021222324
  1. using Abp.Notifications;
  2. namespace VberZero.DomainService.Notifications.Data;
  3. [Serializable]
  4. public class WorkflowAuditNotificationData : NotificationData
  5. {
  6. public WorkflowAuditNotificationData()
  7. {
  8. }
  9. public WorkflowAuditNotificationData(string title, string applyUserName, string workflowKId, string recordId)
  10. {
  11. Title = title;
  12. ApplyUserName = applyUserName;
  13. WorkflowKId = workflowKId;
  14. RecordId = recordId;
  15. }
  16. public string Title { get; set; }
  17. public string ApplyUserName { get; set; }
  18. public string WorkflowKId { get; set; }
  19. public string RecordId { get; set; }
  20. }