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