Files
gridpilot.gg/packages/racing/domain/value-objects/MonthlyRecurrencePattern.ts
2025-12-05 12:24:38 +01:00

11 lines
267 B
TypeScript

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;
}
}