naming fix
This commit is contained in:
parent
c39fd4192a
commit
cc2d98c710
6 changed files with 9 additions and 9 deletions
|
|
@ -1,32 +0,0 @@
|
|||
namespace SurveyBackend.DTOs.Question;
|
||||
|
||||
/// <summary>
|
||||
/// Выходнпя схема вопроса
|
||||
/// </summary>
|
||||
public class OutputQuestionDto
|
||||
{
|
||||
/// <summary>
|
||||
/// ID вопроса
|
||||
/// </summary>
|
||||
public required int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ID родительского опроса
|
||||
/// </summary>
|
||||
public required int SurveyId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Заголовок вопроса
|
||||
/// </summary>
|
||||
public required string Title { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Тип вопроса
|
||||
/// </summary>
|
||||
public required string QuestionType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Варианты ответа
|
||||
/// </summary>
|
||||
public List<OutputAnswerVariantDto>? AnswerVariants { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue