您最多选择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. }