mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
14 lines
340 B
C#
14 lines
340 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Roadie.Library.Models.ThirdPartyApi.Subsonic;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.ModelBinding
|
|
{
|
|
[ModelBinder(BinderType = typeof(SubsonicRequestBinder))]
|
|
public class SubsonicRequest : Request
|
|
{
|
|
}
|
|
}
|