9 lines
204 B
C#
9 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; }
|
|
}
|