Files
SPT-Server-Build/Core/Callbacks/WeatherCallbacks.cs
T
2025-01-07 12:51:59 +00:00

24 lines
600 B
C#

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()
{
}
public GetBodyResponseData<WeatherData> GetWeather(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public GetBodyResponseData<GetLocalWeatherResponseData> GetLocalWeather(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
}