8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
export interface PatchSeason {
|
|
id: string,
|
|
name: string,
|
|
description: string | null,
|
|
startDate: Date,
|
|
endDate: Date
|
|
}
|