Files
OnDoc/API_NetFramework/Startup.cs
Stefan Hutter 4fbeb345ee update 20241003
2024-10-03 16:59:24 +02:00

20 lines
357 B
C#

using Owin;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.Configuration;
namespace OnDocAPI_NetFramework
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
var a = 1; ;
}
}
}