aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Swagger/ApiConvention.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-21 21:25:33 +0800
committercrupest <crupest@outlook.com>2020-08-21 21:25:33 +0800
commitdcb0a10e1adaec24961f2484e7f9a9a1f1f5da15 (patch)
tree6183eac0575933a7d4b0bcd7ad771dafa06bf246 /Timeline/Swagger/ApiConvention.cs
parent81f6ecd9685c5a6bae0da5050b5edfaf050167cc (diff)
downloadtimeline-dcb0a10e1adaec24961f2484e7f9a9a1f1f5da15.tar.gz
timeline-dcb0a10e1adaec24961f2484e7f9a9a1f1f5da15.tar.bz2
timeline-dcb0a10e1adaec24961f2484e7f9a9a1f1f5da15.zip
...
Diffstat (limited to 'Timeline/Swagger/ApiConvention.cs')
-rw-r--r--Timeline/Swagger/ApiConvention.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Timeline/Swagger/ApiConvention.cs b/Timeline/Swagger/ApiConvention.cs
new file mode 100644
index 00000000..dbf0b2fe
--- /dev/null
+++ b/Timeline/Swagger/ApiConvention.cs
@@ -0,0 +1,15 @@
+using Microsoft.AspNetCore.Mvc;
+
+[assembly: ApiConventionType(typeof(Timeline.Controllers.ApiConvention))]
+
+namespace Timeline.Controllers
+{
+ // There is some bug if nullable is enable. So disable it.
+#nullable disable
+ /// <summary>
+ /// My api convention.
+ /// </summary>
+ public static class ApiConvention
+ {
+ }
+}