Initial commit

This commit is contained in:
2026-05-05 10:39:43 +02:00
commit b590ecdc35
87 changed files with 3934 additions and 0 deletions
@@ -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; }
}
@@ -0,0 +1,8 @@
namespace MetaCourse.Api.DTOs.Progress;
public class MarkResourceProgressDto
{
public Guid UserId { get; set; }
public Guid ResourceId { get; set; }
public bool Completed { get; set; }
}
@@ -0,0 +1,8 @@
namespace MetaCourse.Api.DTOs.Progress;
public class MarkTopicProgressDto
{
public Guid UserId { get; set; }
public Guid TopicId { get; set; }
public bool Completed { get; set; }
}