Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Created September 13, 2019 00:31
Show Gist options
  • Save csharpforevermore/5ec0d5cde8ac2efcc345e05ff8edbf89 to your computer and use it in GitHub Desktop.
Save csharpforevermore/5ec0d5cde8ac2efcc345e05ff8edbf89 to your computer and use it in GitHub Desktop.
Umbraco - list properties for current Model
foreach (var prop in Model.Properties)
{
<p>@prop.Alias + " - " + @prop.Value()</p>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment