Kavita/API/DTOs/ReadingLists/PromoteReadingListsDto.cs
2024-07-02 17:00:23 -07:00

10 lines
204 B
C#

using System.Collections.Generic;
namespace API.DTOs.ReadingLists;
public class PromoteReadingListsDto
{
public IList<int> ReadingListIds { get; init; }
public bool Promoted { get; init; }
}