temp
This commit is contained in:
15
Entities/DTO/AssigExamToStudentsDto.cs
Normal file
15
Entities/DTO/AssigExamToStudentsDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Entities.DTO
|
||||
{
|
||||
public class AssigExamToStudentsDto
|
||||
{
|
||||
public Guid CreaterId { get; set; }
|
||||
public Guid AssignmentId { get; set; }
|
||||
public List<Guid> StudentIds { get; set; } = new List<Guid>();
|
||||
}
|
||||
}
|
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Entities.Contracts;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@@ -15,5 +16,6 @@ namespace Entities.DTO
|
||||
public bool? IsCorrect { get; set; }
|
||||
public float? PointsAwarded { get; set; }
|
||||
public string? TeacherFeedback { get; set; }
|
||||
public SubmissionStatus Status { get; set; } = SubmissionStatus.Graded;
|
||||
}
|
||||
}
|
||||
|
14
Entities/DTO/UserClassRoleDto.cs
Normal file
14
Entities/DTO/UserClassRoleDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Entities.DTO
|
||||
{
|
||||
public class UserClassRoleDto
|
||||
{
|
||||
public List<(byte, byte)> ClassInfo { get; set; } = new List<(byte, byte)> ();
|
||||
public string Role { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user