9 lines
149 B
C#
9 lines
149 B
C#
using System.Collections;
|
|
|
|
namespace WPFDark.Interfaces
|
|
{
|
|
public interface IBiaHasChildren
|
|
{
|
|
IEnumerable Children { get; }
|
|
}
|
|
} |