namespace Firebase.Database.Offline
{
///
/// Specifies the strategy for initial pull of server data.
///
public enum InitialPullStrategy
{
///
/// Don't pull anything.
///
None,
///
/// Pull only what isn't already stored offline.
///
MissingOnly,
///
/// Pull everything that exists on the server.
///
Everything
}
}