19 lines
583 B
C#
19 lines
583 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using SVSim.EmulatedEntrypoint.Security;
|
|
using SVSim.EmulatedEntrypoint.Security.SteamSessionAuthentication;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Controllers
|
|
{
|
|
/// <summary>
|
|
/// A base controller for SVSim with helpers for getting some values.
|
|
/// </summary>
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
[Authorize(AuthenticationSchemes = SteamAuthenticationConstants.SchemeName)]
|
|
public abstract class SVSimController : ControllerBase
|
|
{
|
|
}
|
|
}
|