// // LanguageServiceOptions.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; /// /// Options for . /// public class LanguageServiceOptions { /// /// Get or sets the default language. /// public Language Language { get; set; } = Language.Uk; /// /// Gets or sets whether to fill translations with the default language. /// public bool FillTranslatableStrings { get; set; } = true; }