# IMauiPlatformResource

- Kind: `interface`
- Package: [Aspire.Hosting.Maui](/reference/api/csharp/aspire.hosting.maui.md)
- Version: `13.4.0-preview.1.26281.18`
- Namespace: `Aspire.Hosting.Maui`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/becb48e2d61099e35ae336d527d3875e928d6594/src/Aspire.Hosting.Maui/IMauiPlatformResource.cs)
- Implements: `IResource`, `IResourceWithParent`, `IResourceWithParent<MauiProjectResource>`

Marker interface for MAUI platform-specific resources (Windows, Android, iOS, Mac Catalyst).

## Definition

```csharp
namespace Aspire.Hosting.Maui;

public interface IMauiPlatformResource
    : Aspire.Hosting.ApplicationModel.IResource,
      Aspire.Hosting.ApplicationModel.IResourceWithParent,
      Aspire.Hosting.ApplicationModel.IResourceWithParent<Aspire.Hosting.Maui.MauiProjectResource>
{
    // ...
}
```

## Remarks

This interface is used to identify resources that represent a specific platform instance of a MAUI application, allowing for common handling across all MAUI platforms. All MAUI platform resources have a parent [MauiProjectResource](/reference/api/csharp/aspire.hosting.maui/mauiprojectresource.md).
