namespace Firebase.Database
{
///
/// Holds the object of type
///
/// along with its key.
///
/// Type of the underlying object.
public class FirebaseObject
{
internal FirebaseObject(string key, T obj)
{
Key = key;
Object = obj;
}
///
/// Gets the key of .
///
public string Key { get; }
///
/// Gets the underlying object.
///
public T Object { get; }
}
}