An error occurred while loading the file. Please try again.
website.ts 259 bytes
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 }