sharee.bike-App/LockItShared/Services/BluetoothLock/LockItByGuidServiceHelper.cs

21 lines
629 B
C#
Raw Normal View History

2021-05-13 17:07:16 +02:00
using System;
using System.Collections.Generic;
namespace LockItShared.Services.BluetoothLock
{
2022-09-06 16:08:19 +02:00
public static class LockItByGuidServiceHelper
{
/// <summary>
/// Holds guids of developent locks to ensure that no wrong guid are provided by COPRI
/// </summary>
public static Dictionary<int, Guid> DevelGuids = new Dictionary<int, Guid>
{
{ 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") }
};
2021-05-13 17:07:16 +02:00
2022-09-06 16:08:19 +02:00
}
2021-05-13 17:07:16 +02:00
}