19 lines
378 B
C#
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();
|
|
}
|
|
} |