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
413 B
17 lines
413 B
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Entities;
|
|
|
|
[Table("Paragraph")]
|
|
public class ParagraphEntity : ContentLessonEntity
|
|
{
|
|
// ID
|
|
// ContentContent
|
|
// ContentTitle
|
|
// LessonId
|
|
public string Title { get; set; }
|
|
public string Content { get; set; }
|
|
public string Info { get; set; }
|
|
public string Query { get; set; }
|
|
public string Comment { get; set; }
|
|
} |