19 lines
462 B
C#
19 lines
462 B
C#
namespace Core.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();
|
|
}
|
|
} |