DeviceBridge/Models/HubCacheEntry.cs (10 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All rights reserved.
using System;
using System.Collections.Generic;
namespace DeviceBridge.Models
{
public class HubCacheEntry
{
public string DeviceId { get; set; }
public string Hub { get; set; }
}
}