16 lines
378 B
C#
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();
|
|
}
|
|
} |