Files
SPT-Server-Build/Core/Models/Spt/Callbacks/HttpCallbacks.cs
T
2025-01-06 16:09:37 +00:00

19 lines
378 B
C#

namespace Core.Models.Spt.Callbacks;
public class HttpCallbacks
{
public void Load()
{
throw new NotImplementedException();
}
public void SendImage(string sessionID, object req, object resp, object body)
{
throw new NotImplementedException();
}
public string GetImage()
{
throw new NotImplementedException();
}
}