Files
API/TOOHUCardAPI/Controllers/PlayerBaseDataController.cs
2021-10-24 20:50:55 -04:00

15 lines
324 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace TOOHUCardAPI.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class PlayerBaseDataController : ControllerBase
{
}
}