Major refactor and cleanup.

This commit is contained in:
2025-11-13 04:05:35 +00:00
parent 1d67081792
commit 8f6d334af4
833 changed files with 86800 additions and 74355 deletions

View File

@@ -1,14 +1,13 @@
using Aaru.CommonTypes.Enums;
namespace Marechai.Database.Models
namespace Marechai.Database.Models;
// Not for a table
public class OpticalDiscTrack
{
// Not for a table
public class OpticalDiscTrack
{
public int TrackNumber { get; set; }
public int SessionNumber { get; set; }
public long FirstSector { get; set; }
public long LastSector { get; set; }
public TrackType Type { get; set; }
}
public int TrackNumber { get; set; }
public int SessionNumber { get; set; }
public long FirstSector { get; set; }
public long LastSector { get; set; }
public TrackType Type { get; set; }
}