This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/utils/interfaces/advert.ts
2021-11-01 11:59:20 +01:00

16 lines
288 B
TypeScript

export interface Advert
{
_id: string,
title: string,
advertiser: string,
images: {
url: string,
description: string,
}[],
tags: string[],
comment: string,
views: number,
createdAt: Date,
lastUpdate: Date,
isVisible: boolean,
}