# IMauiPlatformResource

- Kind: `interface`
- Package: [Aspire.Hosting.Maui](/reference/api/csharp/aspire.hosting.maui.md)
- Version: `13.3.0-preview.1.26254.5`
- Namespace: `Aspire.Hosting.Maui`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/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).
