9 lines
184 B
JavaScript
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;
|
|
}
|
|
} |