Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }