9 lines
180 B
C#
9 lines
180 B
C#
public class PostQuestionDto
|
|
{
|
|
public string Text { get; set; } = null!;
|
|
|
|
public string MeetingId { get; set; } = null!;
|
|
|
|
public string UserId { get; set; } = null!;
|
|
}
|