Abp模块
abp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
1019 B

namespace Sanhe.Abp.LocalizationManagement
{
/// <summary>
/// 文本差异
/// </summary>
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;
}
}
}