11 lines
261 B
C#
11 lines
261 B
C#
using System;
|
|
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Core.Persistence.Repositories
|
|
{
|
|
public interface IMediaRepository : IContentRepository<int, IMedia>, IReadRepository<Guid, IMedia>
|
|
{
|
|
IMedia GetMediaByPath(string mediaPath);
|
|
}
|
|
}
|