Lectureplan/UWLib/ScrapedLink.cs
Robin Weichselbraun 03ddeba846 Performance update with HTMLAgilityPack
Added Branches
Added LinksToScrape
Added ScrapedLinks
2024-10-12 17:36:23 +02:00

18 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UWLib
{
public class ScrapedLink
{
[Key]
public string Url{ get; set; }
public DateTime LastScrape { get; set; }
}
}