import type { Message } from "@bufbuild/protobuf"; import type { Protobuf } from "@meshtastic/js"; import { IsBoolean, IsInt } from "class-validator"; export class PaxcounterValidation implements Omit { @IsBoolean() enabled: boolean; @IsInt() paxcounterUpdateInterval: number; @IsInt() bleThreshold: number; @IsInt() wifiThreshold: number; }