using System; using Volo.Abp.Domain.Entities; namespace Sozsoft.Languages.Entities; public class Language : Entity { public string CultureName { get; set; } public string UiCultureName { get; set; } public string DisplayName { get; set; } public bool IsEnabled { get; set; } public string TwoLetterISOLanguageName { get; set; } }