10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
export class Relation {
|
|
public column: string;
|
|
public table: string;
|
|
|
|
public constructor (table: string, column: string) {
|
|
this.column = column;
|
|
this.table = table;
|
|
}
|
|
}
|