SendMsgNotificationData.cs 400 B

1234567891011121314151617
  1. using Abp.Notifications;
  2. namespace VberZero.DomainService.Notifications.Data;
  3. [Serializable]
  4. public class SendMsgNotificationData : NotificationData
  5. {
  6. public string SenderUserName { get; set; }
  7. public string Message { get; set; }
  8. public SendMsgNotificationData(string senderUserName, string message)
  9. {
  10. SenderUserName = senderUserName;
  11. Message = message;
  12. }
  13. }