export interface IDtDevice {
    id: string;
    name: string;
    type: string;
    zoneId: string;
    deviceType: string;
    deviceId: string;
    deviceNetworkId: string;
    propertyId: string;
    connectionId: string;
    hubId: string;
    isBatteryLowAlertSent: boolean;
    createdAt: string;
    updatedAt: string;
    isActive: boolean;
}
