You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
457 B
17 lines
457 B
namespace Dto;
|
|
|
|
public abstract class ContentLessonDTO
|
|
{
|
|
public int Id { get; set; }
|
|
public string ContentContent { get; set; }
|
|
public string ContentTitle { get; set; }
|
|
public int LessonId { get; set; }
|
|
|
|
protected ContentLessonDTO(int id, string contentContent, string contentTitle, int lessonId)
|
|
{
|
|
Id = id;
|
|
ContentContent = contentContent;
|
|
ContentTitle = contentTitle;
|
|
LessonId = lessonId;
|
|
}
|
|
} |