Files
TIF22A_AnwProjekt_B/anwendung/src/components/CalenderEntry.js
T
2023-05-07 18:06:21 +02:00

9 lines
184 B
JavaScript

export class CalenderEntry
{
constructor(start_point, end_point)
{
this.start_point = start_point;
this.end_point = end_point;
this.colorID = 0;
}
}