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.
9 lines
180 B
C#
9 lines
180 B
C#
namespace Umbraco.Web
|
|
{
|
|
/// <summary>
|
|
/// Defines the methods to access published media
|
|
/// </summary>
|
|
internal interface IPublishedMediaStore : IPublishedStore
|
|
{
|
|
}
|
|
} |