Skip to content
Snippets Groups Projects
Commit 1ba7d1e2 authored by Kristof De Langhe's avatar Kristof De Langhe
Browse files

57557: Added leftPlace and rightPlace to Relationship + JSDocs

parent 19033e63
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,18 @@ export class NormalizedRelationship extends NormalizedObject {
@autoserialize
rightId: string;
/**
* The place of the Entity to the left side of this Relationship
*/
@autoserialize
leftPlace: number;
/**
* The place of the Entity to the right side of this Relationship
*/
@autoserialize
rightPlace: number;
/**
* The type of Relationship
*/
......
......@@ -35,6 +35,16 @@ export class Relationship implements CacheableObject {
*/
rightId: string;
/**
* The place of the Entity to the left side of this Relationship
*/
leftPlace: number;
/**
* The place of the Entity to the right side of this Relationship
*/
rightPlace: number;
/**
* The type of Relationship
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment