Files
MetaCourseApi/MetaCourse.Api/DTOs/Progress/CourseProgressDto.cs
T
2026-05-05 10:39:43 +02:00

13 lines
381 B
C#

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