Changing classes to internal instead of public in Core project. The abstract classes in the Web project can be used to create providers.

This commit is contained in:
Morten Christensen@ThinkPadX220
2012-09-06 08:00:55 -02:00
parent fff09caebf
commit 8692d0777f
4 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
namespace Umbraco.Core.Media
{
public interface IEmbedProvider
internal interface IEmbedProvider
{
bool SupportsDimensions { get; }

View File

@@ -2,7 +2,7 @@
namespace Umbraco.Core.Media
{
public interface IEmbedSettingProvider
internal interface IEmbedSettingProvider
{
object GetSetting(XmlNode settingNode);
}

View File

@@ -2,7 +2,7 @@
namespace Umbraco.Core.Media
{
public class ProviderSetting : Attribute
internal class ProviderSetting : Attribute
{
}
}

View File

@@ -2,7 +2,7 @@
namespace Umbraco.Web.Media.EmbedProviders
{
public class Twitgoo: AbstractProvider
public class Twitgoo : AbstractProvider
{
public override bool SupportsDimensions
{