IW4M-Admin/Application/Plugin/Script/ScriptPluginWebRequest.cs
2023-04-04 18:24:13 -05:00

7 lines
261 B
C#

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);