12 lines
235 B
C#
12 lines
235 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace RBLFeederCommon.Models.RssFeed;
|
|
|
|
public class FeedGroupVM
|
|
{
|
|
[JsonProperty("pubDate")]
|
|
public DateTime PublishDate { get; set; }
|
|
|
|
[JsonProperty("news")]
|
|
public IList<FeedVM> Feeds { get; set; }
|
|
} |