2023-10-31 11:47:27 -04:00

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; }
}
}