Files
Tabletop/Tabletop.Core/Interfaces/ILocalizationHelper.cs
2025-12-30 02:22:44 +01:00

14 lines
404 B
C#

namespace Tabletop.Core.Interfaces
{
/// <summary>
/// Helper interface to provide properties which can be used within the interface <see cref="ILocalizedDbModel{T}"/>
/// </summary>
public interface ILocalizationHelper
{
/// <summary>
/// Gets or sets the ISO 639-1 two letter code for the language
/// </summary>
string Code { get; set; }
}
}