2022-01-04 08:42:12 +00:00
|
|
|
using System;
|
2022-04-27 18:29:09 +00:00
|
|
|
using System.Collections.Generic;
|
2022-01-04 08:42:12 +00:00
|
|
|
|
2022-03-07 14:10:54 +00:00
|
|
|
namespace Elsa.Modules.Http.Models;
|
2022-01-04 08:42:12 +00:00
|
|
|
|
2022-04-27 18:29:09 +00:00
|
|
|
public record HttpRequestModel(
|
|
|
|
|
Uri RequestUri,
|
|
|
|
|
string Path,
|
|
|
|
|
string Method,
|
|
|
|
|
IDictionary<string, string> QueryString,
|
|
|
|
|
IDictionary<string, object> RouteValues,
|
|
|
|
|
IDictionary<string, string> Headers
|
|
|
|
|
);
|