Files
doneit-web/src/app/models/publication.ts
T
Tiago Kayaya 21cb7d5e96 All GET methods for the module Publications have been integrated.
- Create new folder for publications have been integrated.
- Adicional touch to display the data in a more friendly way added.
2020-12-09 12:10:19 +01:00

8 lines
156 B
TypeScript

export class Publication{
publicationId:string;
processId:string;
title: string;
description: string;
imageUrl:string;
date: Date;
}