Dipper/Dipper.Alioth/Web/ServiceConvention.cs

11 lines
254 B
C#

using Microsoft.AspNetCore.Mvc.ApplicationModels;
namespace Dipper.Alioth.Web;
public class ServiceConvention : IApplicationModelConvention
{
public void Apply(ApplicationModel application)
{
throw new NotImplementedException();
}
}