src/app/models/Notice.ts
Properties |
| expiration |
expiration:
|
Type : number
|
| message |
message:
|
Type : string
|
| published |
published:
|
Type : string
|
| title |
title:
|
Type : string
|
| topic |
topic:
|
Type : string
|
export interface Notice {
expiration: number;
message: string;
published: string;
title: string;
topic: string;
}