Added- AnalyticsController ResponsesController SurveyController UserController
12 lines
363 B
C#
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; }
|
|
}
|
|
} |