16 lines
305 B
C#
16 lines
305 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Yavsc.ApiControllers
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Yavsc.Attributes.Validation;
|
|
|
|
[Authorize,Route("~/api/test")]
|
|
public class TestApiController : Controller
|
|
{
|
|
|
|
}
|
|
|
|
}
|