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