forked from sagnik/Project_Velocity
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
/**
|
|
* Represents a week in a calendar month.
|
|
*
|
|
* A `CalendarWeek` contains the days within the week and the week number.
|
|
*/
|
|
export class CalendarWeek {
|
|
constructor(weekNumber, days) {
|
|
this.days = days;
|
|
this.weekNumber = weekNumber;
|
|
}
|
|
}
|