/BlogEngine/DotNetSlave.BusinessLogic/SyndicationFormat.cs
C# | 31 lines | 9 code | 2 blank | 20 comment | 0 complexity | b86bbc0478556c6da6687b3ad0a830ea MD5 | raw file
1/**************************************************************************** 2Modification History: 3***************************************************************************** 4Date Author Description 5***************************************************************************** 604/11/2007 brian.kuhn Created SyndicationFormat Enumeration 708/30/2007 brian.kuhn Moved SyndicationFormat enum to root of library 8****************************************************************************/ 9namespace BlogEngine.Core 10{ 11 /// <summary> 12 /// Represents common types of syndication formats. 13 /// </summary> 14 public enum SyndicationFormat 15 { 16 /// <summary> 17 /// No syndication format specified. 18 /// </summary> 19 None = 0, 20 21 /// <summary> 22 /// Indicates that a feed conforms to the Atom syndication format. 23 /// </summary> 24 Atom = 1, 25 26 /// <summary> 27 /// Indicates that a feed conforms to the RSS syndication format. 28 /// </summary> 29 Rss = 2 30 } 31}