mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
7 lines
261 B
C#
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);
|