Files
myoffice/MyOffice.SPA/src/app/model/account.model.ts
T
2023-07-23 20:27:23 +03:00

14 lines
367 B
TypeScript

import { AccountCategoryModel } from './account.category.model';
import { AccountAccessRightModel } from './account.accessRight.model';
export interface AccountModel {
id?: string,
name?: string,
currencyId?: string,
currencyName?: string,
type?: string,
allowDelete: boolean,
categories?: AccountCategoryModel[],
accessRights?: AccountAccessRightModel[],
}