mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 11:14:27 +00:00
14 lines
374 B
C#
14 lines
374 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Aaru.Server.Database.Models;
|
|
|
|
public class MmcModelForView : BaseModel<int>
|
|
{
|
|
[DisplayFormat(NullDisplayText = "none")]
|
|
[DisplayName("MMC FEATURES ID")]
|
|
public int? FeaturesId { get; set; }
|
|
|
|
[DisplayName("Response length (bytes)")]
|
|
public int DataLength { get; set; }
|
|
} |