19 lines
322 B
C#
19 lines
322 B
C#
namespace Core.Callbacks;
|
|
|
|
public class HttpCallbacks
|
|
{
|
|
public async Task OnLoad()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string GetRoute()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public string GetImage()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |