// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschraenkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using System.Collections.Generic; namespace Squidex.Translator.State.Old { public class OldTranslationState { public SortedDictionary Texts { get; set; } = new SortedDictionary(); public HashSet Ignores { get; set; } = new HashSet(); public SortedDictionary> Todos { get; set; } = new SortedDictionary>(); } }