9 lines
227 B
C#
9 lines
227 B
C#
namespace MetaCourse.Api.DTOs.Courses;
|
|
|
|
public class CreateCourseDto
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public Guid CreatorId { get; set; }
|
|
}
|