Added Directory controller file

This commit is contained in:
ashutosh.nehete 2025-05-14 15:38:47 +05:30
parent 004bb94d99
commit 58c73383b2

View File

@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Mvc;
namespace Marco.Pms.Services.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class DirectoryController : ControllerBase
{
}
}