| 123456789101112131415161718192021222324 |
- using Abp.Notifications;
- namespace VberZero.DomainService.Notifications.Data;
- [Serializable]
- public class WorkflowAuditNotificationData : NotificationData
- {
- public WorkflowAuditNotificationData()
- {
- }
- public WorkflowAuditNotificationData(string title, string applyUserName, string workflowKId, string recordId)
- {
- Title = title;
- ApplyUserName = applyUserName;
- WorkflowKId = workflowKId;
- RecordId = recordId;
- }
- public string Title { get; set; }
- public string ApplyUserName { get; set; }
- public string WorkflowKId { get; set; }
- public string RecordId { get; set; }
- }
|