Files
MetacourseBackend/MetaCourse.Api/DTOs/Topics/CreateTopicDto.cs
T

10 lines
247 B
C#

namespace MetaCourse.Api.DTOs.Topics;
public class CreateTopicDto
{
public Guid CourseId { get; set; }
public string Title { get; set; } = string.Empty;
public string? Description { get; set; }
public int Position { get; set; }
}