14 lines
389 B
C#
14 lines
389 B
C#
using Microsoft.Extensions.Primitives;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Knoks.Core.Entities
|
|
{
|
|
public class HttpRequestInfo
|
|
{
|
|
public string Url { get; set; }
|
|
public IEnumerable<KeyValuePair<string, string>> Cookies { get; set; }
|
|
public IDictionary<string, StringValues> Headers { get; set; }
|
|
public string Method { get; set; }
|
|
}
|
|
}
|