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

17 lines
319 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 LinkToScrape
{
[Key]
public string Url { get; set; }
public int Sort { get; set; }
}
}