aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Controllers/HomeController.cs
blob: 4f7305600ec5440f84bf2eb5a09f6a1be0dc605e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Microsoft.AspNetCore.Mvc;
using Tango.Portal.Chat.Web.ViewModels;

namespace Tango.Portal.Chat.Web.Controllers
{
    public sealed class HomeController : Controller
    {
        public IActionResult Index()
        {
            HomeViewVM vm = new HomeViewVM();
            vm.UserName = "Roy";
            return View(vm);
        }
    }
}