|
|
@ -5,6 +5,8 @@ |
|
|
// All rights reserved. Licensed under the MIT license.
|
|
|
// All rights reserved. Licensed under the MIT license.
|
|
|
// ==========================================================================
|
|
|
// ==========================================================================
|
|
|
|
|
|
|
|
|
|
|
|
using System.Collections.ObjectModel; |
|
|
|
|
|
|
|
|
namespace Squidex.Domain.Apps.Core.Schemas |
|
|
namespace Squidex.Domain.Apps.Core.Schemas |
|
|
{ |
|
|
{ |
|
|
public abstract class FieldProperties : NamedElementPropertiesBase |
|
|
public abstract class FieldProperties : NamedElementPropertiesBase |
|
|
@ -19,6 +21,8 @@ namespace Squidex.Domain.Apps.Core.Schemas |
|
|
|
|
|
|
|
|
public string EditorUrl { get; set; } |
|
|
public string EditorUrl { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
public ReadOnlyCollection<string> Tags { get; set; } |
|
|
|
|
|
|
|
|
public abstract T Accept<T>(IFieldPropertiesVisitor<T> visitor); |
|
|
public abstract T Accept<T>(IFieldPropertiesVisitor<T> visitor); |
|
|
|
|
|
|
|
|
public abstract T Accept<T>(IFieldVisitor<T> visitor, IField field); |
|
|
public abstract T Accept<T>(IFieldVisitor<T> visitor, IField field); |
|
|
|