using Microsoft.AspNetCore.Mvc; namespace Yavsc.ApiControllers { /// /// Base class for managing performers profiles /// [Produces("application/json"),Route(Constants.APIPrefix + "/profile")] public abstract class ProfileApiController : Controller { public ProfileApiController() { } } }