Initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace MetaCourse.Api.DTOs.Progress;
|
||||
|
||||
public class CourseProgressDto
|
||||
{
|
||||
public Guid CourseId { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
public int TotalTopics { get; set; }
|
||||
public int CompletedTopics { get; set; }
|
||||
public int TotalResources { get; set; }
|
||||
public int CompletedResources { get; set; }
|
||||
public double ProgressPercentage { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user