summaryrefslogtreecommitdiffstats
path: root/src/Models/NewsSource.cs
blob: 5eadad04704a9e1bbceab8e728c76b1dba838a1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace I2R.LightNews.Models;

public class NewsSource
{
    public string Name { get; set; }
    public string CanonicalUrl { get; set; }
    public string Attribution { get; set; }
    public DateTime Created { get; set; }
    public List<NewsArticle> Articles { get; set; }
}