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