diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-08 16:54:03 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-08-08 16:54:03 +0800 |
commit | d018e1c318646c6d7fecc8d3824129e9f1d5cf6c (patch) | |
tree | da11e395a3fd1340187fb785fc17e570171b942b /Timeline/Models/PutResult.cs | |
parent | dc1ab11cea249f4ca967f86b115147a63f7c93a5 (diff) | |
parent | e283a3e745bad05a55c572646d7b20fbaaeb522d (diff) | |
download | timeline-d018e1c318646c6d7fecc8d3824129e9f1d5cf6c.tar.gz timeline-d018e1c318646c6d7fecc8d3824129e9f1d5cf6c.tar.bz2 timeline-d018e1c318646c6d7fecc8d3824129e9f1d5cf6c.zip |
Merge branch 'master' into null-request-field
Diffstat (limited to 'Timeline/Models/PutResult.cs')
-rw-r--r-- | Timeline/Models/PutResult.cs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Timeline/Models/PutResult.cs b/Timeline/Models/PutResult.cs index f11ac138..544602eb 100644 --- a/Timeline/Models/PutResult.cs +++ b/Timeline/Models/PutResult.cs @@ -1,17 +1,17 @@ -namespace Timeline.Models -{ - /// <summary> - /// Represents the result of a "put" operation. - /// </summary> - public enum PutResult - { - /// <summary> - /// Indicates the item did not exist and now is created. - /// </summary> - Created, - /// <summary> - /// Indicates the item exists already and is modified. - /// </summary> - Modified - } -} +namespace Timeline.Models
+{
+ /// <summary>
+ /// Represents the result of a "put" operation.
+ /// </summary>
+ public enum PutResult
+ {
+ /// <summary>
+ /// Indicates the item did not exist and now is created.
+ /// </summary>
+ Created,
+ /// <summary>
+ /// Indicates the item exists already and is modified.
+ /// </summary>
+ Modified
+ }
+}
|