Orchard/src/Orchard.Web/Modules/Orchard.MediaLibrary/Services/IOEmbedService.cs
Andrea Piovanelli 3561be6e37
Some checks failed
Compile / Compile .NET solution (push) Has been cancelled
Compile / Compile Client-side Assets (push) Has been cancelled
Moved embed video import to a dedicated service. (#8827)
2025-02-04 12:55:39 +01:00

7 lines
177 B
C#

using System.Xml.Linq;
namespace Orchard.MediaLibrary.Services {
public interface IOEmbedService : IDependency {
XDocument DownloadMediaData(string url);
}
}