feat(tracks): add ReleaseType and TrackNumber to track metadata model and CMS edit form

This commit is contained in:
daniel-c-harvey
2026-06-10 21:36:00 -04:00
parent f8186fb7c7
commit d47a5e00af
15 changed files with 292 additions and 6 deletions
@@ -1,3 +1,5 @@
using DeepDrftModels.Enums;
namespace DeepDrftAPI.Models;
/// <summary>
@@ -15,4 +17,6 @@ public record UpdateTrackMetadataRequest(
string? Album,
string? Genre,
DateOnly? ReleaseDate,
string? ImagePath = null);
string? ImagePath = null,
ReleaseType? ReleaseType = null,
int? TrackNumber = null);