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
+9
View File
@@ -0,0 +1,9 @@
namespace DeepDrftModels.Enums;
/// <summary>The commercial release format of a track's parent release.</summary>
public enum ReleaseType
{
Single,
EP,
Album
}