You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
275 B

export class Kanji {
private _symbol: string;
private _meaning: string;
private _longitude: number;
constructor(name: string, latitude: string, longitude: number) {
this._symbol = name;
this._meaning = latitude;
this._longitude = longitude;
}
}