# UrlDisplayPropertiesSnapshot Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [UrlDisplayPropertiesSnapshot](/reference/api/csharp/aspire.hosting/urldisplaypropertiessnapshot.md)
- Kind: `Properties`
- Members: `2`

A snapshot of the display properties for a url.

## DisplayName

- Name: `DisplayName`
- Modifiers: `get; init`
- Returns: `string`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs)

The display name of the url.

```csharp
public string DisplayName { get; init; }
```

## SortOrder

- Name: `SortOrder`
- Modifiers: `get; init`
- Returns: `int`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/CustomResourceSnapshot.cs)

The order of the url in UI. Higher numbers are displayed first in the UI.

```csharp
public int SortOrder { get; init; }
```
