CalendarNotificationData.cs 454 B

123456789101112131415161718
  1. using Abp.Notifications;
  2. namespace VberZero.DomainService.Notifications.Data;
  3. [Serializable]
  4. public class CalendarNotificationData : NotificationData
  5. {
  6. public CalendarNotificationData(string title, string message, int calendarId)
  7. {
  8. Title = title;
  9. Message = message;
  10. CalendarId = calendarId;
  11. }
  12. public string Title { get; set; }
  13. public string Message { get; set; }
  14. public int CalendarId { get; set; }
  15. }