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

23 lines
549 B
C#

using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.HttpResponse;
namespace Core.Callbacks;
public class PrestigeCallbacks
{
public PrestigeCallbacks()
{
}
public GetBodyResponseData<Prestige> GetPrestige(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
public GetBodyResponseData<object> ObtainPrestige(string url, EmptyRequestData info, string sessionID)
{
throw new NotImplementedException();
}
}