Sandbox source paths under a configured Imports:RootPath, browse it from the web dialog, upload a zip that extracts into staging, and import a single markdown file (agent infers chapter vs character).
9 lines
155 B
C#
9 lines
155 B
C#
namespace Novelly.Api.Imports;
|
|
|
|
public class ImportOptions
|
|
{
|
|
public const string SectionName = "Imports";
|
|
|
|
public string? RootPath { get; set; }
|
|
}
|