forked from CyberBloom/CyberBloomBackend
7 lines
123 B
C#
7 lines
123 B
C#
public class PutQuestionDto
|
|
{
|
|
public string Id { get; set; } = null!;
|
|
|
|
public string Text { get; set; } = null!;
|
|
}
|