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