//----------------------------------------------------------------------- // // Copyright (c) lanedirt. All rights reserved. // Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information. // //----------------------------------------------------------------------- namespace AliasVault.Client.Services; /// /// Service to handle shared state for quick create form data. /// public class QuickCreateStateService { /// /// Gets or sets the service name from quick create. /// public string? ServiceName { get; set; } /// /// Gets or sets the service URL from quick create. /// public string? ServiceUrl { get; set; } /// /// Clears the stored state. /// public void ClearState() { ServiceName = null; ServiceUrl = null; } }