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

NotificationSaveDTO.cs 196B

123456789
  1. namespace Diligent.WebAPI.Host.DTOs.Notification
  2. {
  3. public class NotificationSaveDTO
  4. {
  5. public string ReceiverId { get; set; }
  6. public string RoomId { get; set; }
  7. }
  8. }