lampac/Shared/Models/SISI/NextHUB/ListSettings.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

35 lines
815 B
C#

namespace Shared.Models.SISI.NextHUB
{
public class ListSettings
{
public int total_pages { get; set; } = 0;
public string firstpage { get; set; }
public string uri { get; set; }
/// <summary>
/// post
/// </summary>
public string data { get; set; }
public string encodingRequest { get; set; }
public string encodingResponse { get; set; }
public string format { get; set; }
public bool viewsource { get; set; } = true;
public string waitForSelector { get; set; }
public float waitForSelector_timeout { get; set; } = 5000;
public string patternAbort { get; set; }
public string routeEval { get; set; }
public ContentParseSettings contentParse { get; set; }
}
}