feat(tracks): add ReleaseType and TrackNumber to track metadata model and CMS edit form
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user