// // LanguageKey.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.Data.Abstractions.Language; /// /// Key for language translation. /// public struct LanguageKey { /// /// Initializes a new instance of the struct. /// /// The key num. public LanguageKey(long key) : this($"zts{key}e") { } /// /// Initializes a new instance of the struct. /// /// The key. public LanguageKey(string key) { Key = key; } /// /// Gets the key. /// public string Key { get; } }