Files
Umbraco-CMS/src/Umbraco.Web/IPublishedMediaStore.cs
Shannon Deminick f2a7b3b255 Updated the published content stores so that content doesn't inherit from media, instead there is a base
interface IPublishedDataStore.
Simplified the interface structure and removed the GetDocumentProperty method as it is not needed and i think existed
before we updated the codebase to not rely on xml.
2012-09-11 05:58:16 +07:00

9 lines
180 B
C#

namespace Umbraco.Web
{
/// <summary>
/// Defines the methods to access published media
/// </summary>
internal interface IPublishedMediaStore : IPublishedStore
{
}
}