using System.Xml.Linq; namespace MfGames.Nitride.Feeds.Structure; /// /// Common constants used while generating feeds. /// public static class XmlConstants { /// /// The XML namespace for Atom feeds. /// public static readonly XNamespace AtomNamespace = "http://www.w3.org/2005/Atom"; /// /// The XML namespace for media. /// public static readonly XNamespace MediaNamespace = "http://search.yahoo.com/mrss/"; }