lampac/Shared/Models/Base/CorseuRequest.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

34 lines
738 B
C#

namespace Shared.Models.Base
{
public class CorseuRequest
{
public string browser { get; set; }
public string url { get; set; }
public string method { get; set; }
public string data { get; set; }
public int? httpversion { get; set; }
public int? timeout { get; set; }
public string encoding { get; set; }
public Dictionary<string, string> headers { get; set; }
public bool? defaultHeaders { get; set; }
public bool? autoredirect { get; set; }
public string proxy { get; set; }
public string proxy_name { get; set; }
public bool? headersOnly { get; set; }
public string auth_token { get; set; }
}
}