You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NotificationReadDTO.cs 258B

123456789101112
  1. using System.Diagnostics.CodeAnalysis;
  2. namespace Diligent.WebAPI.Host.DTOs.Notification
  3. {
  4. [ExcludeFromCodeCoverage]
  5. public class NotificationReadDTO
  6. {
  7. public string RoomId { get; set; }
  8. public int Count { get; set; }
  9. }
  10. }