File

src/app/models/macchine.model.ts

Description

Classe Base che viene estesa per i veicoli e le navi

Extends

Base

Index

Properties

Properties

cargo_capacity
cargo_capacity: string
Type : string

Capacità di carico

cost_in_credits
cost_in_credits: string
Type : string

Costo in crediti

crew
crew: string
Type : string

Equipaggio

length
length: string
Type : string

Dimensione

manufacturer
manufacturer: string
Type : string

Prodotto

max_atmosphering_speed
max_atmosphering_speed: string
Type : string

Massima velocità in atmosfera

model
model: string
Type : string

Modelli

name
name: string
Type : string

Identificativo

passengers
passengers: string
Type : string

Numero di passegger

created
created: string
Type : string
Inherited from Base
Defined in Base:12

Data Creazione

edited
edited: string
Type : string
Inherited from Base
Defined in Base:16

Data Modifica

url
url: string
Type : string
Inherited from Base
Defined in Base:8

Url di riferimento dell'object

import { Base } from './base.model';
/**
 * Classe Base che viene estesa per i veicoli e le navi
 */
export class Macchine extends Base {
  /**
   * Identificativo
   */
  name: string;
  /**
   * Modelli
   */
  model: string;
  /**
   * Numero di passegger
   */
  passengers: string;
  /**
   * Costo in crediti
   */
  cost_in_credits: string;
  /**
   * Equipaggio
   */
  crew: string;
  /**
   * Massima velocità in atmosfera
   */
  max_atmosphering_speed: string;
  /**
   * Dimensione
   */
  length: string;
  /**
   * Prodotto
   */
  manufacturer: string;
  /**
   * Capacità di carico
   */
  cargo_capacity: string;
}

results matching ""

    No results matching ""