forked from sagnik/Project_Velocity
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
/**
|
|
* Represents a month in a calendar year.
|
|
*
|
|
* A `CalendarMonth` contains the weeks within the month and the date of the
|
|
* month.
|
|
*/
|
|
export class CalendarMonth {
|
|
constructor(month, weeks) {
|
|
this.date = month;
|
|
this.weeks = weeks;
|
|
}
|
|
}
|