This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/MfGames.Nitride.Feeds/Structure/XmlConstants.cs

20 lines
511 B
C#
Raw Normal View History

2021-09-07 05:15:45 +00:00
using System.Xml.Linq;
2022-09-06 05:53:22 +00:00
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// Common constants used while generating feeds.
/// </summary>
public static class XmlConstants
2021-09-07 05:15:45 +00:00
{
/// <summary>
/// The XML namespace for Atom feeds.
2021-09-07 05:15:45 +00:00
/// </summary>
public static readonly XNamespace AtomNamespace = "http://www.w3.org/2005/Atom";
2021-09-07 05:15:45 +00:00
/// <summary>
/// The XML namespace for media.
/// </summary>
public static readonly XNamespace MediaNamespace = "http://search.yahoo.com/mrss/";
2021-09-07 05:15:45 +00:00
}