-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathScrapperResult.cs
More file actions
30 lines (28 loc) · 874 Bytes
/
Copy pathScrapperResult.cs
File metadata and controls
30 lines (28 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Playnite.SDK.Models;
namespace F95ZoneMetadataProvider
{
public class ScrapperResult
{
public string? Id { get; set; }
public string? Name { get; set; }
public List<string>? Labels { get; set; }
public string? Version { get; set; }
public string? Developer { get; set; }
public string? Description { get; set; }
public List<string>? Tags { get; set; }
public double Rating { get; set; }
public List<string>? Images { get; set; }
public List<Link>? Links { get; set; }
}
public class ScrapperSearchResult
{
public string? Link { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
}
}