11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
|
@model List<SharedLibrary.Dtos.CommandResponseInfo>
|
||
|
@{
|
||
|
Layout = null;
|
||
|
}
|
||
|
|
||
|
@{
|
||
|
foreach (var response in Model)
|
||
|
{
|
||
|
<span class="text-success">@response.Response</span><br />
|
||
|
}
|
||
|
}
|