mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-22 22:38:57 -04:00
10 lines
200 B
C#
10 lines
200 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Collection;
|
|
|
|
public class PromoteCollectionsDto
|
|
{
|
|
public IList<int> CollectionIds { get; init; }
|
|
public bool Promoted { get; init; }
|
|
}
|