Files
WebScrapeApp/WpfScraper/EntryModel.cs
2021-08-02 12:41:02 +02:00

15 lines
275 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WpfScraper
{
public class EntryModel
{
public string Title { get; set; }
public string Description { get; set; }
}
}