Skip to content

Commit

Permalink
update DevCenterOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Carpenter committed Feb 26, 2024
1 parent 84f1cf6 commit cc3b457
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Microsoft.Devices.HardwareDevCenterManager/DevCenterOptions.cs
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT license. See LICENSE file in the project root for full license information.
Licensed under the MIT license. See LICENSE file in the project root for full license information.
--*/

using Microsoft.Devices.HardwareDevCenterManager.DevCenterApi;
using System;

namespace Microsoft.Devices.HardwareDevCenterManager
{
public class DevCenterOptions
{
public uint HttpTimeoutSeconds { get; set; }
public int RequestDelayMs { get; set; }
public Guid CorrelationId { get; set; }
public LastCommandDelegate LastCommand { get; set; }
}
namespace Microsoft.Devices.HardwareDevCenterManager;

public delegate void LastCommandDelegate(DevCenterErrorDetails error);
public class DevCenterOptions
{
public uint HttpTimeoutSeconds { get; set; }
public int RequestDelayMs { get; set; }
public Guid CorrelationId { get; set; }
public LastCommandDelegate LastCommand { get; set; }
}

public delegate void LastCommandDelegate(DevCenterErrorDetails error);

0 comments on commit cc3b457

Please sign in to comment.