9 lines
208 B
C#
9 lines
208 B
C#
namespace Umbraco.Core.Media
|
|
{
|
|
public interface IEmbedProvider
|
|
{
|
|
bool SupportsDimensions { get; }
|
|
|
|
string GetMarkup(string url, int maxWidth = 0, int maxHeight = 0);
|
|
}
|
|
} |