12 lines
345 B
C#
12 lines
345 B
C#
using System.Collections.Generic;
|
|
using System.Net;
|
|
|
|
namespace Elsa.Activities.Http.Models
|
|
{
|
|
public class HttpResponseModel
|
|
{
|
|
public HttpStatusCode StatusCode { get; set; }
|
|
public Dictionary<string, string[]> Headers { get; set; } = new Dictionary<string, string[]>();
|
|
public object? Content { get; set; }
|
|
}
|
|
} |