2021-03-05 11:27:36 +00:00
|
|
|
import { TAuthor, IAsset, TRating, TCategory } from "../../interfaces";
|
|
|
|
export default class Asset implements IAsset {
|
2021-03-05 12:05:49 +00:00
|
|
|
assetLink: string;
|
|
|
|
associatedAssets: string[];
|
|
|
|
compatibleSoftware: string;
|
|
|
|
includedAssets: string[];
|
|
|
|
officialLinks: string[];
|
|
|
|
sku: string;
|
|
|
|
authors: TAuthor[];
|
|
|
|
category: TCategory;
|
|
|
|
changelog: string[];
|
|
|
|
cover: string;
|
|
|
|
id: number;
|
|
|
|
lastThreadUpdate: Date;
|
|
|
|
name: string;
|
|
|
|
overview: string;
|
|
|
|
prefixes: string[];
|
|
|
|
rating: TRating;
|
|
|
|
tags: string[];
|
|
|
|
threadPublishingDate: Date;
|
|
|
|
url: string;
|
2021-03-05 11:27:36 +00:00
|
|
|
}
|