using System.Collections.Generic; namespace API.DTOs; public class UpdateLibraryForUserDto { public string Username { get; init; } public IEnumerable SelectedLibraries { get; init; } }