namespace Tiobon.Core.Api.Controllers;
///
/// 题目答案(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)]
public class Ghre_QuestionAnswerController : BaseController
{
public Ghre_QuestionAnswerController(IGhre_QuestionAnswerServices service) : base(service)
{
}
}