ArticleClass.ets 359 B

123456789101112131415
  1. export class ArticleClass {
  2. id: string = '';
  3. imageSrc: string = '';
  4. title: string = '';
  5. brief: string = '';
  6. webUrl: string = '';
  7. constructor(id: string, imageSrc: string, title: string, brief: string, webUrl: string) {
  8. this.id = id;
  9. this.imageSrc = imageSrc;
  10. this.title = title;
  11. this.brief = brief;
  12. this.webUrl = webUrl;
  13. }
  14. }