15 lines
350 B
C#
15 lines
350 B
C#
namespace Umbraco.Core.Models.Entities
|
|
{
|
|
/// <summary>
|
|
/// Represents a lightweight media entity, managed by the entity service.
|
|
/// </summary>
|
|
public interface IMediaEntitySlim : IContentEntitySlim
|
|
{
|
|
|
|
/// <summary>
|
|
/// The media file's path/url
|
|
/// </summary>
|
|
string MediaPath { get; }
|
|
}
|
|
}
|