AuthorBuddy/Models/Chapter.cs

10 lines
285 B
C#
Raw Permalink Normal View History

2026-05-14 12:31:35 +02:00
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();
}