mirror of https://github.com/Squidex/squidex.git
11 changed files with 68 additions and 24 deletions
@ -0,0 +1,26 @@ |
|||||
|
// ==========================================================================
|
||||
|
// Squidex Headless CMS
|
||||
|
// ==========================================================================
|
||||
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
||||
|
// All rights reserved. Licensed under the MIT license.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
using System.Collections.Generic; |
||||
|
|
||||
|
namespace Squidex.Domain.Apps.Core.Tags |
||||
|
{ |
||||
|
public sealed class TagsSet : Dictionary<string, int> |
||||
|
{ |
||||
|
public long Version { get; set; } |
||||
|
|
||||
|
public TagsSet() |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
public TagsSet(IDictionary<string, int> tags, long version) |
||||
|
: base(tags) |
||||
|
{ |
||||
|
Version = version; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue