ticket-system/source/ticketUI/src/models/request/patch-season.ts
2024-12-19 15:58:37 -05:00

8 lines
128 B
TypeScript

export interface PatchSeason {
id: string,
name: string,
description: string | null,
startDate: Date,
endDate: Date
}