mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-19 03:08:50 -05:00
12 lines
254 B
C#
12 lines
254 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LibationUiBase.GridView
|
|
{
|
|
public interface ISeriesEntry : IGridEntry
|
|
{
|
|
List<ILibraryBookEntry> Children { get; }
|
|
void ChildRemoveUpdate();
|
|
void RemoveChild(ILibraryBookEntry libraryBookEntry);
|
|
}
|
|
}
|