lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

15 lines
384 B
C#

namespace Shared.Models.Online.PiTor
{
public struct Result
{
public string Tracker { get; set; }
public string Title { get; set; }
public long? Size { get; set; }
public int Seeders { get; set; }
public string MagnetUri { get; set; }
public Info info { get; set; }
public DateTime PublishDate { get; set; }
}
}