Files
Hushian/Presentation/Hushian.WebApi/Controllers/v1/UserController.cs

12 lines
229 B
C#
Raw Normal View History

2025-07-11 20:37:28 +03:30
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace Hushian.WebApi.Controllers.v1
{
[Route("api/v1/[controller]")]
[ApiController]
public class UserController : ControllerBase
{
}
}