LMS.service/LMS.service/Controllers/SoftWareController.cs

15 lines
365 B
C#

using Microsoft.AspNetCore.Mvc;
namespace LMS.service.Controllers
{
[Route("lms/[controller]/[action]")]
public class SoftWareController : ControllerBase
{
//public Index()
//{
// var version = Assembly.GetExecutingAssembly().GetName().Version;
// Console.WriteLine($"Version: {version}");
//}
}
}