using Core.Models.Eft.Common;
using Core.Models.Eft.HttpResponse;
using Core.Models.Eft.Weather;
using Core.Models.Spt.Weather;
namespace Core.Callbacks;
public class WeatherCallbacks
{
public WeatherCallbacks()
{
}
///
/// Handle client/weather
///
///
///
///
///
///
public GetBodyResponseData GetWeather(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
///
/// Handle client/localGame/weather
///
///
///
///
///
///
public GetBodyResponseData GetLocalWeather(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
}