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
commite347b4a4092a24ff7106ffd3aca67d6ca7decca8 (patch)
treee139e794df8cd20c1cf4f60c668dd1d94bf239e1 /Timeline/Entities/Common.cs
parentfce9074be199b1c100481f49ccd9e231df2b84c8 (diff)
downloadtimeline-e347b4a4092a24ff7106ffd3aca67d6ca7decca8.tar.gz
timeline-e347b4a4092a24ff7106ffd3aca67d6ca7decca8.tar.bz2
timeline-e347b4a4092a24ff7106ffd3aca67d6ca7decca8.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; }
+ }
+}