8 lines
No EOL
215 B
C#
8 lines
No EOL
215 B
C#
namespace SurveyBackend.DTOs.Question;
|
|
|
|
public class OutputAnswerVariantDto
|
|
{
|
|
public required int Id { get; set; }
|
|
public required int QuestionId { get; set; }
|
|
public required string Text { get; set; }
|
|
} |