lampac/Shared/Models/Catalog/CardParseSettings.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

27 lines
599 B
C#

namespace Shared.Models.Catalog
{
public class CardParseSettings
{
public bool? jsonPath { get; set; }
public string initUrl { get; set; }
public string postData { get; set; }
public string initHeader { get; set; }
public string node { get; set; }
public SingleNodeSettings name { get; set; }
public SingleNodeSettings original_name { get; set; }
public SingleNodeSettings image { get; set; }
public SingleNodeSettings year { get; set; }
public SingleNodeSettings description { get; set; }
}
}