crm.core/code/Crm.Core.Identity.WebAPI/Controller/BaseController.cs

12 lines
234 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Crm.Core.Identity.WebApi.Controller
{
[ApiController]
[Route("Api/[controller]")]
[Produces("application/json")]
public class BaseController : ControllerBase
{
}
}