mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Move database context, migrations and models to separate project.
This commit is contained in:
14
Aaru.Server.Database/Models/MmcModelForView.cs
Normal file
14
Aaru.Server.Database/Models/MmcModelForView.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user