summaryrefslogtreecommitdiff
path: root/dsa/FireBase/Http/PostResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dsa/FireBase/Http/PostResult.cs')
-rw-r--r--dsa/FireBase/Http/PostResult.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/dsa/FireBase/Http/PostResult.cs b/dsa/FireBase/Http/PostResult.cs
new file mode 100644
index 0000000..15a4894
--- /dev/null
+++ b/dsa/FireBase/Http/PostResult.cs
@@ -0,0 +1,13 @@
+namespace Firebase.Database.Http
+{
+ /// <summary>
+ /// Represents data returned after a successful POST to firebase server.
+ /// </summary>
+ public class PostResult
+ {
+ /// <summary>
+ /// Gets or sets the generated key after a successful post.
+ /// </summary>
+ public string Name { get; set; }
+ }
+} \ No newline at end of file