Files
tsclass/ts/business/job.ts
2023-09-13 13:31:30 +02:00

12 lines
329 B
TypeScript

import * as finance from '../finance/index.js';
import { type ICompany } from './company.js';
import { type IContact } from './contact.js';
export class IJob {
type: 'contract' | 'employment';
name: string;
description: string;
monthlyTotal: number;
currency: finance.TCurrency;
from: ICompany;
contact: IContact;
}