aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/ByteData.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-08-21 23:47:10 +0800
committerGitHub <noreply@github.com>2020-08-21 23:47:10 +0800
commitc28848a35b0f31a59f9d02641571495822ad0db8 (patch)
tree520b56d834185ba5f9f556558a181bb9f4059b29 /Timeline/Models/ByteData.cs
parent30e96fc5a59a8324ed861e7f7e856c44b4d329ff (diff)
parent3aa8e1cda4222fc3a9828888ba8fb51d2ba1d6c8 (diff)
downloadtimeline-c28848a35b0f31a59f9d02641571495822ad0db8.tar.gz
timeline-c28848a35b0f31a59f9d02641571495822ad0db8.tar.bz2
timeline-c28848a35b0f31a59f9d02641571495822ad0db8.zip
Merge pull request #149 from crupest/swagger
Swagger/OpenAPI
Diffstat (limited to 'Timeline/Models/ByteData.cs')
-rw-r--r--Timeline/Models/ByteData.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/Timeline/Models/ByteData.cs b/Timeline/Models/ByteData.cs
new file mode 100644
index 00000000..7b832eb5
--- /dev/null
+++ b/Timeline/Models/ByteData.cs
@@ -0,0 +1,33 @@
+using NSwag.Annotations;
+
+namespace Timeline.Models
+{
+ /// <summary>
+ /// Model for reading http body as bytes.
+ /// </summary>
+ [OpenApiFile]
+ public class ByteData
+ {
+ /// <summary>
+ /// </summary>
+ /// <param name="data">The data.</param>
+ /// <param name="contentType">The content type.</param>
+ public ByteData(byte[] data, string contentType)
+ {
+ Data = data;
+ ContentType = contentType;
+ }
+
+ /// <summary>
+ /// Data.
+ /// </summary>
+#pragma warning disable CA1819 // Properties should not return arrays
+ public byte[] Data { get; }
+#pragma warning restore CA1819 // Properties should not return arrays
+
+ /// <summary>
+ /// Content type.
+ /// </summary>
+ public string ContentType { get; }
+ }
+}