10 lines
285 B
C#
10 lines
285 B
C#
|
|
namespace AuthorBuddy.Web.Models;
|
||
|
|
|
||
|
|
public class Chapter
|
||
|
|
{
|
||
|
|
public string Title { get; set; } = string.Empty;
|
||
|
|
public string FilePath { get; set; } = string.Empty;
|
||
|
|
public string Content { get; set; } = string.Empty;
|
||
|
|
public List<string> Characters { get; set; } = new();
|
||
|
|
}
|