namespace Sanhe.Abp.LocalizationManagement { /// /// 文本差异 /// public class TextDifference { public int Id { get; set; } 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; } public TextDifference() { } public TextDifference( int id, string cultureName, string key, string value, string targetCultureName, string targetValue = null, string resourceName = null) { Id = id; Key = key; Value = value; CultureName = cultureName; TargetCultureName = targetCultureName; TargetValue = targetValue; ResourceName = resourceName; } } }