* Updating the app's culture based on the display language and making sure that dates/times are properly translated.
6 lines
170 B
C#
6 lines
170 B
C#
using Wino.Core.Domain.Enums;
|
|
|
|
namespace Wino.Core.Domain.Models.Translations;
|
|
|
|
public record AppLanguageModel(AppLanguage Language, string DisplayName, string Code);
|