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

16 lines
363 B
C#
Raw Normal View History

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