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; } }