/** * Copyright (c) 2020 The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import { Model } from '@nuinalp/api-core/browser'; export default class ProjectMember extends Model { protected static adapter: any; id: string; full_name: string; email: string; role: 'user' | 'admin' | 'owner'; date_added: string; avatar: string; project_id?: string; organization_id?: string; user_id: string; }