mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
13 lines
249 B
C#
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; }
|
|
}
|