Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user