C#: Add abstract controller remote flow source example.

This commit is contained in:
Michael Nebel
2024-08-21 12:08:21 +02:00
parent 5d14307ea2
commit 75772c5832
2 changed files with 19 additions and 14 deletions

View File

@@ -58,4 +58,9 @@ namespace Testing
app.Run();
}
}
}
public abstract class AbstractTestController : Controller
{
public void MyActionMethod(string param) { }
}
}