Please explain how can I change the color of the text in the row(i think it should be class for ) depending on the value of the element item.Status.
<tbody>
@foreach (var item in Model) {
<tr>
<td>
@{ if (item.Status != 0) {
<del> @Html.DisplayFor(modelItem => item.Name)</del> } else { @Html.DisplayFor(modelItem => item.Name) } }
</td>
<td>
@Html.DisplayFor(modelItem => item.Count)
</td>
</tr>