aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/Common.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-04-21 23:23:49 +0800
committercrupest <crupest@outlook.com>2019-04-21 23:23:49 +0800
commit0920d6ca8d8f92e612148aa1d3c4eaea5f407d94 (patch)
treee139e794df8cd20c1cf4f60c668dd1d94bf239e1 /Timeline/Entities/Common.cs
parent748aa44ccaf88686ffbaf9e31d025be24e2d200a (diff)
downloadtimeline-0920d6ca8d8f92e612148aa1d3c4eaea5f407d94.tar.gz
timeline-0920d6ca8d8f92e612148aa1d3c4eaea5f407d94.tar.bz2
timeline-0920d6ca8d8f92e612148aa1d3c4eaea5f407d94.zip
Allow ordinary user to patch his password.
Diffstat (limited to 'Timeline/Entities/Common.cs')
-rw-r--r--Timeline/Entities/Common.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Timeline/Entities/Common.cs b/Timeline/Entities/Common.cs
new file mode 100644
index 00000000..235a2a20
--- /dev/null
+++ b/Timeline/Entities/Common.cs
@@ -0,0 +1,12 @@
+namespace Timeline.Entities
+{
+ public class MessageResponse
+ {
+ public MessageResponse(string message)
+ {
+ Message = message;
+ }
+
+ public string Message { get; set; }
+ }
+}