15 lines
379 B
C#
15 lines
379 B
C#
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
namespace Erp.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; }
|
|
}
|
|
|
|
|