mirror of https://github.com/Squidex/squidex.git
24 changed files with 128 additions and 62 deletions
@ -0,0 +1,16 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System.Collections.Generic; |
|||
|
|||
namespace Squidex.Domain.Apps.Entities |
|||
{ |
|||
public interface IEntityWithTags |
|||
{ |
|||
HashSet<string> Tags { get; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue