You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Api/Controllers/Ghra/Ghra_TitleController.cs

14 lines
486 B

namespace Tiobon.Core.Api.Controllers;
/// <summary>
/// Ghra_Title(Controller)
/// </summary>
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghra)]
public class Ghra_TitleController : BaseController<IGhra_TitleServices, Ghra_Title, Ghra_TitleDto, InsertGhra_TitleInput, EditGhra_TitleInput>
{
public Ghra_TitleController(IGhra_TitleServices service) : base(service)
{
}
}