10 lines
194 B
C#
10 lines
194 B
C#
using System;
|
|
using System.Xml.Linq;
|
|
namespace UmbracoExamine.DataServices
|
|
{
|
|
public interface IMediaService
|
|
{
|
|
XDocument GetLatestMediaByXpath(string xpath);
|
|
}
|
|
}
|