8 lines
297 B
C#
8 lines
297 B
C#
namespace Props.Services.Content
|
|
{
|
|
public interface ITextualManager<out TModel>
|
|
{
|
|
// TODO: Replace this system with globalization and localization. See: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-6.0
|
|
dynamic Json { get; }
|
|
}
|
|
} |