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

CommentCreateDto.cs 231B

123456789
  1. namespace Diligent.WebAPI.Contracts.DTOs.Comment
  2. {
  3. public class CommentCreateDto
  4. {
  5. public string Content { get; set; }
  6. public int UserId { get; set; }
  7. public int ApplicantId { get; set; }
  8. }
  9. }