9 lines
190 B
C#
9 lines
190 B
C#
|
namespace ARMeilleure.IntermediateRepresentation
|
|||
|
{
|
|||
|
interface IIntrusiveListNode<T> where T : class
|
|||
|
{
|
|||
|
T ListPrevious { get; set; }
|
|||
|
T ListNext { get; set; }
|
|||
|
}
|
|||
|
}
|