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.
36 lines
990 B
36 lines
990 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
|
|
|
namespace WebApiLol.Controllers
|
|
{
|
|
[Route("[controller]")]
|
|
public class SkinController : Controller
|
|
{
|
|
private readonly ILogger<SkinController> _logger;
|
|
|
|
public SkinController(ILogger<SkinController> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
[HttpGet(Name = "GetSkin")]
|
|
public ActionResult<IEnumerable<SkinDTO>> Get()
|
|
{
|
|
return Ok(Enumerable.Range(1, 5).Select(index => new SkinDTO
|
|
{
|
|
Name = "Skin tah les fou",
|
|
Description ="Skin assez limité et sorti le 23/02/2022",
|
|
Icon = "je sais pas ce que c'est un icon",
|
|
Price = 25.0f
|
|
})
|
|
.ToArray());
|
|
}
|
|
}
|
|
}
|
|
|