using FishNet.Documenting;
namespace FishNet.Object.Synchronizing
{
    [APIExclude]
    public enum SyncDictionaryOperation : byte
    {
        /// 
        /// A key and value have been added to the collection.
        /// 
        Add,
        /// 
        /// Collection has been cleared.
        /// 
        Clear,
        /// 
        /// A key was removed from the collection.
        /// 
        Remove,
        /// 
        /// A value has been set for a key in the collection.
        /// 
        Set,
        /// 
        /// All operations for the tick have been processed.
        /// 
        Complete
    }
}