main
cs 18 lines 580 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.WixBA
4 {
5 using System;
6
7 /// <summary>
8 /// The model for an individual news item.
9 /// </summary>
10 public class NewsItem
11 {
12 public string Author { get; set; }
13 public string Title { get; set; }
14 public string Url { get; set; }
15 public string Snippet { get; set; }
16 public DateTime Updated { get; set; }
17 }
18 }