summaryrefslogtreecommitdiff
path: root/dsa/FireBase/Http/PostResult.cs
blob: 15a4894a693ea25c9001ed5c77a527c71ce48274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
    }
}