using System.Collections.Generic; namespace API.DTOs; public sealed record DeleteSeriesDto { public IList SeriesIds { get; set; } = default!; }