using System; using System.Collections.Generic; using System.Text; namespace LockItShared.Services.BluetoothLock { public static class LockItByGuidServiceHelper { /// /// Holds guids of developent locks to ensure that no wrong guid are provided by COPRI /// public static Dictionary DevelGuids = new Dictionary { { 2200537, new Guid("00000000-0000-0000-0000-d589a8023487") }, { 2200543, new Guid("00000000-0000-0000-0000-cc141a6f68bb") }, { 2200544, new Guid("00000000-0000-0000-0000-dc969f648732") }, { 2200545, new Guid("00000000-0000-0000-0000-e38bf9d32234") } }; } }