/* * Copyright (C) SapphireCode - All Rights Reserved * This file is part of Snippeteer which is released under BSD-3-Clause. * See file 'LICENSE' for full license details. * Created by Timo Hocker , May 2020 */ export class Relation { public column: string; public table: string; public constructor (table: string, column: string) { this.column = column; this.table = table; } }