mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
11 lines
210 B
TypeScript
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
|
|
}
|