This repository has been archived on 2025-10-05. You can view files and clone it, but cannot push or open issues or pull requests.
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CSS_Solution.Request
|
|
{
|
|
internal interface IRequest
|
|
{
|
|
List<KeyValuePair<string, string>>? Get_cookie();
|
|
public Request_Type request_type { get; }
|
|
|
|
}
|
|
}
|