2019-11-13 00:29:48 +00:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2024-05-03 22:18:49 +01:00
|
|
|
namespace Aaru.Server.Database.Models;
|
2021-12-08 17:57:50 +00:00
|
|
|
|
|
|
|
|
public class MmcModelForView : BaseModel<int>
|
2019-11-13 00:29:48 +00:00
|
|
|
{
|
2023-10-04 00:09:19 +01:00
|
|
|
[DisplayFormat(NullDisplayText = "none")]
|
|
|
|
|
[DisplayName("MMC FEATURES ID")]
|
2021-12-08 17:57:50 +00:00
|
|
|
public int? FeaturesId { get; set; }
|
2023-10-04 00:09:19 +01:00
|
|
|
|
2021-12-08 17:57:50 +00:00
|
|
|
[DisplayName("Response length (bytes)")]
|
|
|
|
|
public int DataLength { get; set; }
|
2019-11-13 00:29:48 +00:00
|
|
|
}
|