Files
kodi-api-server/src/Torrent/Dto/torrent-search-result.class.ts
T

11 lines
210 B
TypeScript

export class TorrentSearchResult {
id: string;
magnet: string;
name: string;
size: string;
seeders: string;
leechers: string;
date: string;
info: string; //anything that does not fit to above
}