Files
2024-08-31 12:07:21 +03:00

17 lines
406 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProfessionalProfile.Domain
{
public class AssessmentTestDTO
{
public string TestName { get; set; }
public string Description { get; set; }
public List<QuestionDTO> Questions { get; set; }
public string SkillTested { get; set; }
}
}