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; }
}

View File

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

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()
{