diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.WixBA/NewsItem.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/WixToolset.WixBA/NewsItem.cs b/src/WixToolset.WixBA/NewsItem.cs new file mode 100644 index 00000000..a8350104 --- /dev/null +++ b/src/WixToolset.WixBA/NewsItem.cs | |||
@@ -0,0 +1,18 @@ | |||
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.UX | ||
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 | } | ||