Created
September 13, 2019 00:31
-
-
Save csharpforevermore/5ec0d5cde8ac2efcc345e05ff8edbf89 to your computer and use it in GitHub Desktop.
Umbraco - list properties for current Model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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