-
Notifications
You must be signed in to change notification settings - Fork 1
/
USBDeviceInfo.cs
36 lines (29 loc) · 964 Bytes
/
USBDeviceInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System;
using UnityEngine;
namespace HoloToolkit.Unity
{
[Serializable]
public class USBDeviceInfo
{
public USBDeviceInfo(int vendorId, string udid, int productId, string name, int revision)
{
VendorId = vendorId;
Udid = udid;
ProductId = productId;
Name = name;
Revision = revision;
}
[SerializeField]
public int VendorId { get; private set; }
[SerializeField]
public string Udid { get; private set; }
[SerializeField]
public int ProductId { get; private set; }
[SerializeField]
public string Name { get; private set; }
[SerializeField]
public int Revision { get; private set; }
}
}