naming fix

This commit is contained in:
Вячеслав 2025-05-13 19:15:36 +05:00
parent c39fd4192a
commit cc2d98c710
6 changed files with 9 additions and 9 deletions

View file

@ -1,17 +0,0 @@
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; }
}