18 lines
395 B
C#
Executable File
18 lines
395 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Mocha.Core
|
|
{
|
|
public class Relationship
|
|
{
|
|
public Relationship(Instance sourceInstance, Instance relationshipInstance)
|
|
{
|
|
SourceInstance = sourceInstance;
|
|
RelationshipInstance = relationshipInstance;
|
|
}
|
|
|
|
public Instance SourceInstance { get; }
|
|
public Instance RelationshipInstance { get; }
|
|
}
|
|
}
|