Move enums to Data project.

This commit is contained in:
2025-11-14 16:31:35 +00:00
parent 5bffbc342e
commit 4a5708b910
67 changed files with 753 additions and 713 deletions

View File

@@ -0,0 +1,13 @@
using Aaru.CommonTypes.Enums;
namespace Marechai.Data.Models;
// 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; }
}