Newer
Older
using System;
using System.Xml.Serialization;
namespace BeckmanComms.Api.DataTransferObjects.V1
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
/// <summary>
/// Data Transfer Object representing a Beckman news article.
/// </summary>
[XmlType(TypeName = "Article")]
public class FeedArticleDTO
{
/// <summary>
/// Article title.
/// </summary>
public string Title { get; set; }
/// <summary>
/// Article author's name.
/// </summary>
public string Author { get; set; }
/// <summary>
/// Article URL.
/// </summary>
public string Link { get; set; }
/// <summary>
/// Article description.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Date the article was published.
/// </summary>
public DateTime PublishDate { get; set; }
/// <summary>
/// Flag indicating whether the article is hosted on a Beckman server.
/// </summary>
public bool IsInternal { get; set; }
}
}