AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
USBDeviceInfo.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 
4 using System;
5 using UnityEngine;
6 
7 namespace HoloToolkit.Unity
8 {
9  [Serializable]
10  public class USBDeviceInfo
11  {
12  public USBDeviceInfo(int vendorId, string udid, int productId, string name, int revision)
13  {
14  VendorId = vendorId;
15  Udid = udid;
16  ProductId = productId;
17  Name = name;
18  Revision = revision;
19  }
20 
21  public int VendorId { get; private set; }
22 
23  public string Udid { get; private set; }
24 
25  public int ProductId { get; private set; }
26 
27  public string Name { get; private set; }
28 
29  public int Revision { get; private set; }
30  }
31 }
USBDeviceInfo(int vendorId, string udid, int productId, string name, int revision)