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:
51
Aaru.Server.Database/Models/NesHeaderInfo.cs
Normal file
51
Aaru.Server.Database/Models/NesHeaderInfo.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Aaru.CommonTypes.Enums;
|
||||
|
||||
namespace Aaru.Server.Database.Models;
|
||||
|
||||
public class NesHeaderInfo : BaseModel<int>
|
||||
{
|
||||
/// <summary>ROM hash</summary>
|
||||
[StringLength(64)]
|
||||
[Required]
|
||||
public string Sha256 { get; set; }
|
||||
|
||||
/// <summary>If <c>true</c> vertical mirroring is hard-wired, horizontal or mapper defined otherwise</summary>
|
||||
public bool NametableMirroring { get; set; }
|
||||
|
||||
/// <summary>If <c>true</c> a battery is present</summary>
|
||||
public bool BatteryPresent { get; set; }
|
||||
|
||||
/// <summary>If <c>true</c> the four player screen mode is hardwired</summary>
|
||||
public bool FourScreenMode { get; set; }
|
||||
|
||||
/// <summary>Mapper number (NES 2.0 when in conflict)</summary>
|
||||
public ushort Mapper { get; set; }
|
||||
|
||||
/// <summary>Console type</summary>
|
||||
public NesConsoleType ConsoleType { get; set; }
|
||||
|
||||
/// <summary>Submapper number</summary>
|
||||
public byte Submapper { get; set; }
|
||||
|
||||
/// <summary>Timing mode</summary>
|
||||
public NesTimingMode TimingMode { get; set; }
|
||||
|
||||
/// <summary>Vs. PPU type</summary>
|
||||
public NesVsPpuType VsPpuType { get; set; }
|
||||
|
||||
/// <summary>Vs. hardware type</summary>
|
||||
public NesVsHardwareType VsHardwareType { get; set; }
|
||||
|
||||
/// <summary>Extended console type</summary>
|
||||
public NesExtendedConsoleType ExtendedConsoleType { get; set; }
|
||||
|
||||
/// <summary>Default expansion device</summary>
|
||||
public NesDefaultExpansionDevice DefaultExpansionDevice { get; set; }
|
||||
|
||||
/// <summary>Date when model has been added to the database</summary>
|
||||
public DateTime AddedWhen { get; set; }
|
||||
|
||||
/// <summary>Date when model was last modified</summary>
|
||||
public DateTime ModifiedWhen { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user