Files
MusicCast.Net/MusicCast.Net.Api.Server/Controllers/DistController.cs
2025-05-24 19:54:08 +02:00

16 lines
378 B
C#

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();
}
}