Files
Wino-Mail/Wino.Core.Domain/Models/Translations/AppLanguageModel.cs
Burak Kaan Köse d36cf59829 Translated dates based on display language. (#567)
* Updating the app's culture based on the display language and making sure that dates/times are properly translated.
2025-02-16 14:46:34 +01:00

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);