All Downloads are FREE. Search and download functionalities are using the official Maven repository.

models.dataset.ts Maven / Gradle / Ivy

The newest version!
import { Asset } from './asset';

export class Dataset extends Asset {
    constructor(name?: string, id?: string) {
        super(id, name);
    }

    copy(): Dataset {
        return new Dataset(this.name, this.id);
    }
} 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy