You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/labs/CSharpObjectJsonSchema/Controllers/DefaultController.cs

17 lines
344 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace CSharpObjectJsonSchema.Controllers
{
[Area("test")]
public class DefaultController : Controller
{
public IActionResult Index()
{
return View();
}
}
}