using System.Collections.Generic; namespace TapTap.TapDB.Standalone.Internal { public class Device { public void InitProps(Dictionary properties) { TapDBStandalone.Tracker.TrackDeviceProperties(Constants.PROPERTY_INITIALIZE_TYPE, properties); } public void UpdateProps(Dictionary properties) { TapDBStandalone.Tracker.TrackDeviceProperties(Constants.PROPERTY_UPDATE_TYPE, properties); } public void AddProps(Dictionary properties) { TapDBStandalone.Tracker.TrackDeviceProperties(Constants.PROPERTY_ADD_TYPE, properties); } } }