//----------------------------------------------------------------------- // // 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.JsInterop.Models; /// /// Represents a vault version. /// public sealed class SqlVaultVersion { /// /// Gets the revision number. /// public int Revision { get; init; } /// /// Gets the version. /// public string Version { get; init; } = string.Empty; /// /// Gets the description. /// public string Description { get; init; } = string.Empty; /// /// Gets the AliasVault release version that this vault version was introduced in. /// public string ReleaseVersion { get; init; } = string.Empty; }