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