Add project data

This commit is contained in:
2025-12-30 02:22:44 +01:00
parent a6316b8b06
commit 747af63a29
2301 changed files with 67690 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
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; }
}
}