Skip to content

Instantly share code, notes, and snippets.

@azaharafernandezguizan
Created October 27, 2018 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azaharafernandezguizan/aaf3c918a684af964e88d21bd2debfb7 to your computer and use it in GitHub Desktop.
Save azaharafernandezguizan/aaf3c918a684af964e88d21bd2debfb7 to your computer and use it in GitHub Desktop.
Aurelia model class example
export class IgNobel {
IgNobleID: number;
Categoria: string;
Descripcion: string;
Anio: string;
constructor(IgNobleID: number, Categoria: string, Descripcion: string,
Anio: string) {
this.IgNobleID = IgNobleID;
this.Categoria = Categoria;
this.Descripcion = Descripcion;
this.Anio = Anio;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment