summaryrefslogtreecommitdiff
path: root/dsa/FireBase/Offline/SyncOptions.cs
blob: 3b6e9c8a70c7d0c097b097c9e4125c0d9e77e46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace Firebase.Database.Offline {
    /// <summary>
    ///     Specifies type of sync requested for given data.
    /// </summary>
    public enum SyncOptions {
        /// <summary>
        ///     No sync needed for given data.
        /// </summary>
        None,

        /// <summary>
        ///     Data should be pulled from firebase.
        /// </summary>
        Pull,

        /// <summary>
        ///     Data should be put to firebase.
        /// </summary>
        Put,

        /// <summary>
        ///     Data should be patched in firebase.
        /// </summary>
        Patch
    }
}