16 lines
471 B
C#
16 lines
471 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DBConnection.Models;
|
|
|
|
public class Chapter : BaseEntity
|
|
{
|
|
public int ChapterNumber { get; set; }
|
|
public string Name { get; set; }
|
|
public string? Content { get; set; }
|
|
public string? RawContent { get; set; }
|
|
[Key]
|
|
public string Url { get; set; }
|
|
public DateTime? DatePosted { get; set; }
|
|
public DateTime? DateUpdated { get; set; }
|
|
public DateTime? LastContentFetch { get; set; }
|
|
} |