diff options
author | 杨宇千 <crupest@outlook.com> | 2019-11-20 20:11:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 20:11:49 +0800 |
commit | 1bb9a2a622955e7c0a0b75e36fb1673cb9f3aca5 (patch) | |
tree | fb40d254bcec2946ce7c080089c76a342d3472b0 /Timeline/Models/Http | |
parent | f2ca682f8d111112adc167dcf62011676c3ceb00 (diff) | |
parent | 1e86a5c6fbbd6aa05a0a5fcaadf8a9d7b1402eca (diff) | |
download | timeline-1bb9a2a622955e7c0a0b75e36fb1673cb9f3aca5.tar.gz timeline-1bb9a2a622955e7c0a0b75e36fb1673cb9f3aca5.tar.bz2 timeline-1bb9a2a622955e7c0a0b75e36fb1673cb9f3aca5.zip |
Merge pull request #55 from crupest/format
Fix some format problems.
Diffstat (limited to 'Timeline/Models/Http')
-rw-r--r-- | Timeline/Models/Http/Common.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Timeline/Models/Http/Common.cs b/Timeline/Models/Http/Common.cs index 2a88b3a3..d1e95397 100644 --- a/Timeline/Models/Http/Common.cs +++ b/Timeline/Models/Http/Common.cs @@ -72,6 +72,8 @@ namespace Timeline.Models.Http {
public class ResponseData
{
+ public ResponseData() { }
+
public ResponseData(bool create)
{
Create = create;
@@ -106,6 +108,8 @@ namespace Timeline.Models.Http {
public class ResponseData
{
+ public ResponseData() { }
+
public ResponseData(bool delete)
{
Delete = delete;
|