Merge pull request #3074 from arknu/tags-internal

Make TagSupport and related types public
This commit is contained in:
Sebastiaan Janssen
2018-09-30 11:02:52 +02:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -83,7 +83,7 @@ namespace Umbraco.Core.Models
/// <summary>
/// Returns the instance of the tag support, by default tags are not enabled
/// </summary>
internal PropertyTags TagSupport
public PropertyTags TagSupport
{
get { return _tagSupport; }
}
@@ -242,4 +242,4 @@ namespace Umbraco.Core.Models
return clone;
}
}
}
}

View File

@@ -1,9 +1,9 @@
namespace Umbraco.Core.Models
{
internal enum PropertyTagBehavior
public enum PropertyTagBehavior
{
Replace,
Remove,
Merge
}
}
}

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Core.Models
/// <summary>
/// A property extension class that allows us to enable tags for any given property
/// </summary>
internal class PropertyTags
public class PropertyTags
{
public PropertyTags()
{
@@ -33,4 +33,4 @@ namespace Umbraco.Core.Models
public IEnumerable<Tuple<string, string>> Tags { get; set; }
}
}
}