Files
SPT-Server-Build/Core/Models/Spt/Callbacks/BundleCallbacks.cs
T

19 lines
473 B
C#

namespace Core.Models.Spt.Callbacks;
public class BundleCallbacks
{
public object SendBundle(string sessionID, object req, object res, object body)
{
throw new NotImplementedException();
}
public string GetBundles(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBundle(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
}