export interface IOperatorData {
    id: number | undefined;
    operatorKey: string | undefined;
    validate(): void;
}
