using Newtonsoft.Json; namespace RBLFeederCommon.Models.RssFeed; public class FeedGroupVM { public string PublishDateDisplay { get => PublishDate.ToString("dd.MM.yyyy"); } [JsonProperty("pubDate")] public DateTime PublishDate { get; set; } [JsonProperty("news")] public IList Feeds { get; set; } }