Kavita/API/DTOs/BulkActionDto.cs
2025-05-04 07:14:44 -07:00

13 lines
249 B
C#

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