Skip to content

Commit

Permalink
XML comments and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens committed Jan 28, 2025
1 parent fe70fd1 commit c3a8326
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Source/implementations/mac/Meadow.Mac/Mac.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@

namespace Meadow;

/// <summary>
/// Represents a Mac device running the Meadow OS.
/// </summary>
public class Mac : IMeadowDevice, IPixelDisplayProvider
{
private readonly Lazy<NativeNetworkAdapterCollection> _networkAdapters;

/// <inheritdoc/>
public IPlatformOS PlatformOS { get; }
/// <inheritdoc/>
public DeviceCapabilities Capabilities { get; private set; }
public DeviceCapabilities Capabilities { get; private set; } = default!;
/// <inheritdoc/>
public IDeviceInformation Information { get; private set; }
public IDeviceInformation Information { get; private set; } = default!;
/// <inheritdoc/>
public INetworkAdapterCollection NetworkAdapters => _networkAdapters.Value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

namespace Meadow;

/// <summary>
/// Represents a collection of network adapters for Windows.
/// </summary>
public class WindowsNetworkAdapterCollection : NativeNetworkAdapterCollection
{
/// <inheritdoc/>
Expand Down

0 comments on commit c3a8326

Please sign in to comment.