sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Domain/Entities/Language.cs

16 lines
383 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Sozsoft.Languages.Entities;
public class Language : FullAuditedEntity<Guid>
{
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; }
}