can create Surveys for fun now

This commit is contained in:
Вячеслав 2025-04-16 21:57:56 +05:00
parent 77a49ff49b
commit 2b5f468b84
2 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,7 @@
namespace SurveyBackend.DTOs.Survey;
public class CreateSurveyDTO
{
public required string Title { get; set; }
public string Description { get; set; } = string.Empty;
}