forked from CyberBloom/CyberBloomBackend
авторизация
This commit is contained in:
8
CyberBoom/DbContext/Dtos/Questions/PostQuestionDto.cs
Normal file
8
CyberBoom/DbContext/Dtos/Questions/PostQuestionDto.cs
Normal 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!;
|
||||
}
|
6
CyberBoom/DbContext/Dtos/Questions/PutQuestionDto.cs
Normal file
6
CyberBoom/DbContext/Dtos/Questions/PutQuestionDto.cs
Normal file
@ -0,0 +1,6 @@
|
||||
public class PutQuestionDto
|
||||
{
|
||||
public string Id { get; set; } = null!;
|
||||
|
||||
public string Text { get; set; } = null!;
|
||||
}
|
Reference in New Issue
Block a user