11 lines
No EOL
269 B
C#
11 lines
No EOL
269 B
C#
using SurveyBackend.DTOs.Answer;
|
|
|
|
namespace SurveyBackend.DTOs.Completion;
|
|
|
|
public class CompletionOutputDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int SurveyId { get; set; }
|
|
public int? CompletedBy { get; set; }
|
|
public DateTime FinishedAt { get; set; }
|
|
} |