Use different way of showing MMC FEATURES.

This commit is contained in:
2019-11-13 00:29:48 +00:00
parent 30a8776016
commit 69cc41c3c7
4 changed files with 49 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace DiscImageChef.Server.Models
{
public class MmcModelForView
{
public int Id { get; set; }
[DisplayFormat(NullDisplayText = "none"), DisplayName("MMC FEATURES ID")]
public int? FeaturesId { get; set; }
[DisplayName("Response length (bytes)")]
public int DataLength { get; set; }
}
}