import { Id } from '@win2win/shared';

export interface Mapeo {
  id?: string;
  nivel: number;
  numero: string;
  seduvi: string;
  torre?: string;
  referencia?: string;
  comentario?: string;
  createdAt: string;
  updatedAt: string;
  visitas: VisitaMapeo[];
}

export interface VisitaMapeo {
  ID_VISITA: Id;
  FECHA_CREADO: string | Date;
  PROPS: any;
}

export enum SeduviState {
  MODULACION_PENDIENTE = 1,
  MODULACION_REALIZADA = 2,
  VISITA_PENDIENTE = 3,
  FUERA_COBERTURA = 4,
}
