9 lines
311 B
C#
9 lines
311 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BrokerApiServer;
|
|
public class ApiControllerBase: ControllerBase
|
|
{
|
|
protected string PlanetId => HttpContext.Items["planet_id"]?.ToString() ?? string.Empty;
|
|
protected string PlanetServerType => HttpContext.Items["planet_server_type"]?.ToString() ?? string.Empty;
|
|
}
|