using System.Collections.Generic; namespace LibationUiBase.GridView { public interface ISeriesEntry : IGridEntry { List Children { get; } void ChildRemoveUpdate(); void RemoveChild(ILibraryBookEntry libraryBookEntry); } }