using System.Collections.Generic; namespace API.DTOs; public sealed record BulkActionDto { public List Ids { get; set; } /** * If this is a Scan action, will ignore optimizations */ public bool? Force { get; set; } }