Files
SPT-Server-Build/Core/Controllers/PrestigeController.cs
T
2025-01-08 13:41:25 +00:00

33 lines
878 B
C#

using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
namespace Core.Controllers;
public class PrestigeController
{
/// <summary>
/// Handle /client/prestige/list
/// </summary>
/// <param name="sessionId"></param>
/// <param name="info"></param>
/// <returns></returns>
public Prestige GetPrestige(
string sessionId,
EmptyRequestData info)
{
throw new NotImplementedException();
}
/// <summary>
/// Handle /client/prestige/obtain
/// </summary>
/// <param name="sessionId"></param>
/// <param name="info"></param>
/// <returns></returns>
public object ObtainPrestige( // TODO: returns `any` in the node server, not implemented either
string sessionId,
EmptyRequestData info)
{
throw new NotImplementedException("Method not Implemented");
}
}