7 lines
103 B
C#
7 lines
103 B
C#
|
|
namespace WI
|
|||
|
|
{
|
|||
|
|
public interface ISingle { }
|
|||
|
|
|
|||
|
|
public interface ISingleChild : ISingle { }
|
|||
|
|
}
|