mpp-frontend-ts/src/Pianoctor/Note.ts

13 lines
240 B
TypeScript

// Pianoctor
////////////////////////////////////////////////////////////////
export class Note {
note: string;
octave: number;
constructor(note: string, octave: number = 0) {
this.note = note;
this.octave = octave;
}
}