@inherits CmsMediumBrowserBase @using DeepDrftModels.DTOs @using DeepDrftModels.Enums @* Cut-filtered release grid for the Release Archive's CUTS tab (Phase 9 §8.A). Derived from the same CmsMediumBrowserBase pattern the Session/Mix browsers use, so a fourth medium would follow the same shape with no parallel path. Cuts carry no medium-specific row action (no hero, no waveform), so the ActionContent slot renders nothing — every row still gets the shared Edit affordance from CmsMediumTable. Embedded as tab content only; it has no standalone @page route. *@ @code { protected override ReleaseMedium Medium => ReleaseMedium.Cut; protected override string MediumNoun => "cuts"; protected override CutRow ToRow(ReleaseDto release) => new() { Release = release }; public sealed class CutRow { public required ReleaseDto Release { get; set; } } }