using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Aaru.Server.Database.Models; public class MmcModelForView : BaseModel { [DisplayFormat(NullDisplayText = "none")] [DisplayName("MMC FEATURES ID")] public int? FeaturesId { get; set; } [DisplayName("Response length (bytes)")] public int DataLength { get; set; } }