add AnswerVariant

This commit is contained in:
Вячеслав 2025-05-20 17:35:43 +05:00
parent 8a80013c94
commit ae43e8c74c
10 changed files with 139 additions and 5 deletions

View file

@ -9,16 +9,21 @@ public class SurveyOutputDto
/// ID опроса
/// </summary>
public required int Id { get; set; }
/// <summary>
/// Название опроса
/// </summary>
public required string Title { get; set; }
/// <summary>
/// Описание опроса
/// </summary>
public required string Description { get; set; }
/// <summary>
/// Создатель опроса (опционально)
/// </summary>
public int? CreatedBy { get; set; }
public required DateTime CreatedAt { get; set; }
}