using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.LocalizationManagement; public class TextDto : EntityDto { public string Key { get; set; } public string Value { get; set; } public string CultureName { get; set; } public string ResourceName { get; set; } }