IW4M-Admin/Application/Plugin/Script/ScriptPluginWebRequest.cs

7 lines
261 B
C#
Raw Normal View History

2023-04-04 19:24:13 -04:00
using System.Collections.Generic;
namespace IW4MAdmin.Application.Plugin.Script;
public record ScriptPluginWebRequest(string Url, object Body = null, string Method = "GET", string ContentType = "text/plain",
Dictionary<string, string> Headers = null);