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.
API_SQLuedo/API_SQLuedo/Model/Paragraph.cs

24 lines
632 B

namespace Model;
public class Paragraph : ContentLesson
{
public string Info { get; set; }
public string Query { get; set; }
public string Comment { get; set; }
public Paragraph(string title, string content, string info, string query, string comment) : base(content,
title)
{
Info = info;
Query = query;
Comment = comment;
}
public Paragraph(int id, string title, string content, string info, string query, string comment, int lessonId) :
base(id, content, title, lessonId)
{
Info = info;
Query = query;
Comment = comment;
}
}