lampac/Shared/Models/Catalog/ContentParseSettings.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

31 lines
730 B
C#

namespace Shared.Models.Catalog
{
public class ContentParseSettings
{
public string serial_regex { get; set; }
public SingleNodeSettings serial_key { get; set; }
public bool? jsonPath { get; set; }
public string nodes { get; set; }
public SingleNodeSettings name { get; set; }
public SingleNodeSettings original_name { get; set; }
public SingleNodeSettings href { get; set; }
public SingleNodeSettings image { get; set; }
public SingleNodeSettings year { get; set; }
public List<SingleNodeSettings> args { get; set; }
public SingleNodeSettings total_pages { get; set; }
public string eval { get; set; }
}
}