7 lines
106 B
TypeScript

export class Period
{
constructor (
public from: number,
public to: number
) {}
}