Files
2023-02-22 11:08:17 +00:00

16 lines
389 B
C#

namespace JWLMerge.BackupFileServices.Models.DatabaseModels;
public class BibleNote
{
public BibleBookChapterAndVerse BookChapterAndVerse { get; set; }
public int? StartTokenInVerse { get; set; }
public int? EndTokenInVerse { get; set; }
public int ColourIndex { get; set; }
public string? NoteTitle { get; set; }
public string? NoteContent { get; set; }
}