| 1234567891011121314151617181920212223 |
- namespace Abp.Notifications
- {
- /// <summary>
- /// Extension methods for <see cref="UserNotificationInfo"/>.
- /// </summary>
- public static class UserNotificationInfoExtensions
- {
- /// <summary>
- /// Converts <see cref="UserNotificationInfo"/> to <see cref="UserNotification"/>.
- /// </summary>
- public static UserNotification ToUserNotification(this UserNotificationInfo userNotificationInfo, TenantNotification tenantNotification)
- {
- return new UserNotification
- {
- Id = userNotificationInfo.Id,
- Notification = tenantNotification,
- UserId = userNotificationInfo.UserId,
- State = userNotificationInfo.State,
- TenantId = userNotificationInfo.TenantId
- };
- }
- }
- }
|