Added- AnalyticsController ResponsesController SurveyController UserController
13 lines
298 B
C#
13 lines
298 B
C#
using System;
|
|
|
|
namespace survey_beta.DTOs.Default
|
|
{
|
|
public class ChoiceDto
|
|
{
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
public string Letter { get; set; }
|
|
public string Content { get; set; }
|
|
public string QuestionId { get; set; }
|
|
}
|
|
}
|