10 lines
218 B
C#
10 lines
218 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.Collection;
|
|
|
|
public class DeleteCollectionsDto
|
|
{
|
|
[Required]
|
|
public IList<int> CollectionIds { get; set; }
|
|
}
|