namespace Umbraco.Cms.Core.Models { /// /// Used to generate paths to media items for a specified property editor alias /// public interface IMediaUrlGenerator { /// /// Tries to get a media path for a given property editor alias /// /// The property editor alias /// The value of the property /// /// True if a media path was returned /// bool TryGetMediaPath(string? propertyEditorAlias, object? value, out string? mediaPath); } }