namespace Sanhe.Abp.LocalizationManagement
{
public class TextEto
{
///
/// 文化名称
///
public string CultureName { get; set; }
///
/// Key
///
public string Key { get; set; }
///
/// Value
///
public string Value { get; set; }
///
/// 资源名称
///
public string ResourceName { get; set; }
}
}