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.
38 lines
1019 B
38 lines
1019 B
3 years ago
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|