niisse-net-js/lib/log-item.ts

18 lines
398 B
TypeScript
Raw Permalink Normal View History

export class LogItem {
id: string;
date: string;
title: string;
description: string;
linkName: string;
link: string;
constructor(id: string, date: string, title: string, description: string, linkName: string, link: string) {
this.id = id;
this.date = date;
this.title = title;
this.description = description;
this.linkName = linkName;
this.link = link;
}
}