~ruther/NosSmooth

ref: 8a4dbc3cd51c4e150994470fce211ab91c081be0 NosSmooth/Data/NosSmooth.Data.Abstractions/Language/LanguageServiceOptions.cs -rw-r--r-- 506 bytes
8a4dbc3c — František Boháček fix(data): change czech language to correct string 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  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;

/// <summary>
/// Options for <see cref="ILanguageService"/>.
/// </summary>
public class LanguageServiceOptions
{
    /// <summary>
    /// Get or sets the default language.
    /// </summary>
    public Language Language { get; set; } = Language.En;
}
Do not follow this link