mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 14:48:09 +08:00
7 lines
177 B
C#
7 lines
177 B
C#
using System.Xml.Linq;
|
|
|
|
namespace Orchard.MediaLibrary.Services {
|
|
public interface IOEmbedService : IDependency {
|
|
XDocument DownloadMediaData(string url);
|
|
}
|
|
} |