namespace survey_beta.DTOs.Response { public class SurveyResponseDto { public string Id { get; set; } public string Title { get; set; } public string Description { get; set; } public string Category { get; set; } public DateTime? ExpirationDate { get; set; } public bool IsPublished { get; set; } } }