using Diligent.WebAPI.Contracts.DTOs.Technology; namespace Diligent.WebAPI.Contracts.DTOs.Ad { public class AdResponseWithCountDto { public int Id { get; set; } public string Title { get; set; } public int MinimumExperience { get; set; } public DateTime CreatedAt { get; set; } public DateTime ExpiredAt { get; set; } public int Count { get; set; } } }