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