diff options
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
+ }
+}
|