Files
CyberBloomBackend/CyberBoom/DbContext/Dtos/Questions/PutQuestionDto.cs
T
2023-12-24 04:16:18 +03:00

7 lines
123 B
C#

public class PutQuestionDto
{
public string Id { get; set; } = null!;
public string Text { get; set; } = null!;
}