Calender Prototype

This commit is contained in:
brausjonas
2023-05-04 16:41:21 +02:00
parent 87e34e7a2e
commit 88fe8b84e3
4 changed files with 163 additions and 2 deletions
@@ -0,0 +1,9 @@
export class CalenderEntry
{
constructor(start_point, end_point)
{
this.start_point = start_point;
this.end_point = end_point;
this.parent = null;
}
}