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.

1234567891011
  1. using Diligent.WebAPI.Contracts.DTOs.User;
  2. namespace Diligent.WebAPI.Contracts.DTOs.Comment
  3. {
  4. public class CommentViewDto
  5. {
  6. public string Content { get; set; }
  7. public DateTime DateOfSending { get; set; }
  8. public UserResponseDTO User { get; set; }
  9. }
  10. }