-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4faa55a
commit 6881534
Showing
5 changed files
with
32 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 25 additions & 25 deletions
50
src/Microsoft.Devices.HardwareDevCenterManager/Models/HardwareId.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
/*++ | ||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
--*/ | ||
|
||
using System.Text.Json.Serialization; | ||
|
||
namespace Microsoft.Devices.HardwareDevCenterManager.DevCenterApi; | ||
|
||
public class HardwareId | ||
{ | ||
[JsonPropertyName("bundleId")] | ||
public string BundleId { get; set; } | ||
|
||
[JsonPropertyName("infId")] | ||
public string InfId { get; set; } | ||
|
||
[JsonPropertyName("operatingSystemCode")] | ||
public string OperatingSystemCode { get; set; } | ||
|
||
[JsonPropertyName("pnpString")] | ||
/*++ | ||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
--*/ | ||
|
||
using System.Text.Json.Serialization; | ||
|
||
namespace Microsoft.Devices.HardwareDevCenterManager.DevCenterApi; | ||
|
||
public class HardwareId | ||
{ | ||
[JsonPropertyName("bundleId")] | ||
public string BundleId { get; set; } | ||
|
||
[JsonPropertyName("infId")] | ||
public string InfId { get; set; } | ||
|
||
[JsonPropertyName("operatingSystemCode")] | ||
public string OperatingSystemCode { get; set; } | ||
|
||
[JsonPropertyName("pnpString")] | ||
public string PnpString { get; set; } | ||
|
||
[JsonPropertyName("distributionState")] | ||
public string DistributionState { get; set; } | ||
} | ||
[JsonPropertyName("distributionState")] | ||
public string DistributionState { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters