wip
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import type { Weekday } from './Weekday';
|
||||
|
||||
export class MonthlyRecurrencePattern {
|
||||
readonly ordinal: 1 | 2 | 3 | 4;
|
||||
readonly weekday: Weekday;
|
||||
|
||||
constructor(ordinal: 1 | 2 | 3 | 4, weekday: Weekday) {
|
||||
this.ordinal = ordinal;
|
||||
this.weekday = weekday;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user