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

models.asset.ts Maven / Gradle / Ivy

The newest version!
export class Asset {
    id: string;
    name: string;
    parentId: string; // id of the parent asset, optional

    constructor(id?: string, name?: string, parentId?: string) {
        this.id = id;
        this.name = name;
        this.parentId = parentId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy