add AnswerVariant
This commit is contained in:
parent
8a80013c94
commit
ae43e8c74c
10 changed files with 139 additions and 5 deletions
|
|
@ -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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue