mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 07:22:53 +00:00
19 lines
427 B
TypeScript
19 lines
427 B
TypeScript
import type { FacilityStatus, FacilityType } from '../entities/facility.entity';
|
|
|
|
export class CreateFacilityDto {
|
|
code!: string;
|
|
name!: string;
|
|
description?: string;
|
|
facilityType!: FacilityType;
|
|
facilityStatus?: FacilityStatus;
|
|
locationName?: string;
|
|
country?: string;
|
|
city?: string;
|
|
address?: string;
|
|
latitude?: number;
|
|
longitude?: number;
|
|
capacity?: number;
|
|
isActive?: boolean;
|
|
notes?: string;
|
|
}
|