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

22 lines
462 B
C#

namespace Shared.Models.Catalog
{
public class ListSettings
{
public string initUrl { get; set; }
public string initHeader { get; set; }
public int total_pages { get; set; }
public int count_page { get; set; }
public string firstpage { get; set; }
public string uri { get; set; }
public string postData { get; set; }
public ContentParseSettings contentParse { get; set; }
}
}