UNPKG

@seniorsistemas/senior-sam

Version:
30 lines (29 loc) 605 B
/** * Aplicação * Serviço do backend da aplicação do Ronda senior X * * * Contact: seniorx-dev@senior.com.br * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Blueprint } from './blueprint'; import { Device } from './device'; export interface BlueprintDevice { blueprint?: Blueprint; /** * Latitude */ latitude: number; /** * ID */ id?: number; device: Device; /** * Longitude */ longitude: number; }