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) 265 B
import { DepartmentData } from "./department.data"; import { UserData } from "./user.data"; export declare class MunicipalityData { id: number; name: string; createdAt: Date; updatedAt: Date; department: DepartmentData; users: UserData[]; }