// ========================================================================== // SchemaCommand.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== using System; using Squidex.Infrastructure; namespace Squidex.Domain.Apps.Write { public abstract class SchemaCommand : AppCommand { public NamedId SchemaId { get; set; } } }