mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
18 lines
414 B
C#
18 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Jackett.Utils.Clients
|
|
{
|
|
public class WebClientStringResult
|
|
{
|
|
public HttpStatusCode Status { get; set; }
|
|
public string Cookies { get; set; }
|
|
public string Content { get; set; }
|
|
public string RedirectingTo { get; set; }
|
|
}
|
|
}
|