life quality changes
- refactored SurveyController.cs - added ProducesResponseType to every endpoint in every controller - remade mappers
This commit is contained in:
parent
9e50b97bc9
commit
6692a91821
11 changed files with 146 additions and 93 deletions
|
|
@ -0,0 +1,9 @@
|
|||
namespace SurveyBackend.DTOs.Survey;
|
||||
|
||||
public class OutputSurveyDto
|
||||
{
|
||||
public required int Id { get; set; }
|
||||
public required string Title { get; set; }
|
||||
public required string Description { get; set; }
|
||||
public int? CreatedBy { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue