mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-13 00:54:20 +01:00
14 lines
260 B
C#
14 lines
260 B
C#
using System.Collections.Generic;
|
|
using CodeHollow.FeedReader;
|
|
|
|
namespace WebSharpRSS.Models
|
|
{
|
|
public class FeedTreeItem
|
|
{
|
|
public FeedTreeItem(Feed feed)
|
|
{
|
|
_feed = feed;
|
|
}
|
|
private readonly Feed _feed;
|
|
}
|
|
} |