Files
survey-beta/survey-beta/DTOs/Response/SurveyResponse.cs
majed adel d2a32d35f4 Feat/Controllers
Added- AnalyticsController ResponsesController SurveyController UserController
2025-02-01 14:06:32 -08:00

12 lines
363 B
C#

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; }
}
}