選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AdResponseWithCountDto.cs 421B

123456789101112131415161718
  1. using Diligent.WebAPI.Contracts.DTOs.Technology;
  2. namespace Diligent.WebAPI.Contracts.DTOs.Ad
  3. {
  4. public class AdResponseWithCountDto
  5. {
  6. public int Id { get; set; }
  7. public string Title { get; set; }
  8. public int MinimumExperience { get; set; }
  9. public DateTime CreatedAt { get; set; }
  10. public DateTime ExpiredAt { get; set; }
  11. public int Count { get; set; }
  12. }
  13. }