Files
gamification-service/Models/DTO/InstructionTestResultDTO.cs

13 lines
236 B
C#

namespace GamificationService.Models.DTO;
public class InstructionTestResultDTO
{
public long? Id { get; set; }
public long? InstructionTestId { get; set; }
public long? UserId { get; set; }
public int Score { get; set; }
}