Coding/BinaryDad.Coding/Controllers/HomeController.cs
2021-07-22 19:48:43 -04:00

17 lines
317 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BinaryDad.Coding.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
}
}
}