using System; using Volo.Abp.Application.Dtos; namespace Erp.Languages; public class LanguageTextDto : FullAuditedEntityDto { public string CultureName { get; set; } public string ResourceName { get; set; } public string Key { get; set; } public string Value { get; set; } }