Initial commit - MetaCourse API

This commit is contained in:
2026-05-28 13:45:03 +00:00
commit 0f97b7d85c
79 changed files with 3334 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; }
}