forked from ddrilling/AsbCloudServer
11 lines
245 B
C#
11 lines
245 B
C#
|
using System.Collections.Generic;
|
||
|
using AsbCloudApp.Data;
|
||
|
|
||
|
namespace AsbCloudWebApi.SignalR.Messages;
|
||
|
|
||
|
public class NotificationMessage
|
||
|
{
|
||
|
public IEnumerable<NotificationDto>? Notifications { get; set; }
|
||
|
|
||
|
public int CountUnread { get; set; }
|
||
|
}
|