/** * 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 { TInvoiceHistoryType } from '../types/invoice.history.type'; export default class InvoiceHistory { protected static adapter: any; id: string; type: TInvoiceHistoryType; id_invoice: string; created_at: Date; updated_at: Date; deleted_at: Date; }