mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
15 lines
462 B
C#
15 lines
462 B
C#
namespace Podsync.Services.Rss.Feed
|
|
{
|
|
public static class Namespaces
|
|
{
|
|
public const string Itunes = "http://www.itunes.com/dtds/podcast-1.0.dtd";
|
|
|
|
public const string Media = "http://search.yahoo.com/mrss/";
|
|
|
|
public const string Atom = "http://www.w3.org/2005/Atom";
|
|
|
|
public const string Content = "http://purl.org/rss/1.0/modules/content/";
|
|
|
|
public const string Dc = "http://purl.org/dc/elements/1.1/";
|
|
}
|
|
} |