//
// Translation.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.
using NosSmooth.Data.Abstractions.Language;
namespace NosSmooth.Data.Database.Data;
///
/// A translation of NosTale string.
///
public class Translation
{
///
/// Gets or sets the language of the translation.
///
public Language Language { get; set; }
///
/// Gets or sets the root key of the translation.
///
public TranslationRoot Root { get; set; }
///
/// Gets or sets the key of the translation.
///
public string Key { get; set; } = null!;
///
/// Gets or sets the translation string.
///
public string Translated { get; set; } = null!;
}