авторизация

This commit is contained in:
2023-12-24 04:16:18 +03:00
parent d2d2685672
commit b5477d529f
31 changed files with 973 additions and 967 deletions

View File

@ -0,0 +1,8 @@
public class PostQuestionDto
{
public string Text { get; set; } = null!;
public string MeetingId { get; set; } = null!;
public string UserId { get; set; } = null!;
}

View File

@ -0,0 +1,6 @@
public class PutQuestionDto
{
public string Id { get; set; } = null!;
public string Text { get; set; } = null!;
}