Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
import { Project } from './project'
class Website extends Project {
constructor (ownerGitlabId: number, name: string, desc: string, id?: number, logo?: string, path?: string) {
super(ownerGitlabId, name, desc, id, logo, path)
}
export { Website }