14 lines
380 B
C#
14 lines
380 B
C#
using MetaCourse.Api.DTOs.Resources;
|
|
|
|
namespace MetaCourse.Api.DTOs.Topics;
|
|
|
|
public class GetTopicDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Title { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
public int Position { get; set; }
|
|
public Guid CourseId { get; set; }
|
|
public List<GetResourceDto> Resources { get; set; } = new();
|
|
}
|