Files
Aaru.Server/Aaru.Server.Database/Models/MmcModelForView.cs

14 lines
374 B
C#
Raw Permalink Normal View History

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Aaru.Server.Database.Models;
2021-12-08 17:57:50 +00:00
public class MmcModelForView : BaseModel<int>
{
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; }
}