
Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Weblate (bot) <hosted@weblate.org> Co-authored-by: Gregory.Open <gregory.open@proton.me> Co-authored-by: Mateusz <mateuszvx8.96@gmail.com> Co-authored-by: majora2007 <kavitareader@gmail.com> Co-authored-by: 無情天 <kofzhanganguo@126.com>
12 lines
241 B
C#
12 lines
241 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public class BulkActionDto
|
|
{
|
|
public List<int> Ids { get; set; }
|
|
/**
|
|
* If this is a Scan action, will ignore optimizations
|
|
*/
|
|
public bool? Force { get; set; }
|
|
}
|