8 lines
158 B
C#
8 lines
158 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Collection;
|
|
|
|
public class DeleteCollectionsDto
|
|
{
|
|
public IList<int> CollectionIds { get; set; }
|
|
}
|