survey-webapp/SurveyBackend/SurveyBackend.API/DTOs/Question/CreateQuestionDTO.cs

17 lines
No EOL
414 B
C#

namespace SurveyBackend.DTOs.Question;
/// <summary>
/// Схема для создания нового Question
/// </summary>
public class CreateQuestionDto
{
/// <summary>
/// Название вопроса
/// </summary>
public required string Title { get; set; }
/// <summary>
/// Тип вопроса
/// </summary>
public required string QuestionType { get; set; }
}