Add server api definition
This commit is contained in:
16
MusicCast.Net.Api.Server/Controllers/DistController.cs
Normal file
16
MusicCast.Net.Api.Server/Controllers/DistController.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using MusicCast.Net.Api.Server.Models;
|
||||
|
||||
namespace MusicCast.Net.Api.Server.Controllers;
|
||||
|
||||
[ApiController]
|
||||
[Route("/YamahaExtendedControl/v1/dist/")]
|
||||
public class DistController
|
||||
{
|
||||
[HttpGet]
|
||||
[Route("getDistributionInfo")]
|
||||
public GetDistributionInfoResponse GetDistributionInfo()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user