// ========================================================================== // MyAppState.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== using Squidex.Domain.Apps.Read.State.Grains; using Squidex.Infrastructure.States; namespace Benchmarks.Tests.TestData { public sealed class MyAppState : StatefulObject { public void SetState(AppStateGrainState state) { State = state; } } }