Suggerisci descrizione
@if (!AttachedList.IsNullOrEmpty())
{
foreach (var item in AttachedList!.Select((p, index) => new { p, index }))
{
@if (item.p.Type == AttachedDTO.TypeAttached.Position)
{
@item.p.Description
}
else
{
@item.p.Name
}
}
}
@if (!IsLoading)
{
if (ActivityFileList != null)
{
foreach (var file in ActivityFileList)
{
@file.FileName
}
}
}
else
{
}
@if (!IsView)
{
}