@page @model esh.core.web.Pages.Actors @{ ViewData["Title"] = "actors"; }
@foreach (var actor in Web.Core.Actors) {
@(!string.IsNullOrWhiteSpace(actor.CustomName) ? actor.CustomName : actor.ActorType))
@if (!string.IsNullOrWhiteSpace(actor.CustomDescription)) {

@actor.CustomDescription

}

@actor.LastKnownState

Config
}