UNPKG

@rsksmart/rif-storage-pinning

Version:

Application for providing your storage space to other to use in exchange of RIF Tokens

15 lines (14 loc) 349 B
import { Model } from 'sequelize-typescript'; import Agreement from './agreement.model'; export default class JobModel extends Model { name: string; agreementReference: string; agreement: Agreement; state: string; tries: number; type: string; start: Date; finish: Date; retry: string; errorMessage: string; }