UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

11 lines (10 loc) 290 B
import { DepartmentData } from "./department.data"; import { UserDetailData } from "./user-detail.data"; export declare class MunicipalityData { id: number; name: string; createdAt: Date; updatedAt: Date; department: DepartmentData; userDetails: UserDetailData[]; }