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.
22 lines
530 B
22 lines
530 B
namespace Sanhe.Abp.LocalizationManagement |
|
{ |
|
public class TextEto |
|
{ |
|
/// <summary> |
|
/// 文化名称 |
|
/// </summary> |
|
public string CultureName { get; set; } |
|
/// <summary> |
|
/// Key |
|
/// </summary> |
|
public string Key { get; set; } |
|
/// <summary> |
|
/// Value |
|
/// </summary> |
|
public string Value { get; set; } |
|
/// <summary> |
|
/// 资源名称 |
|
/// </summary> |
|
public string ResourceName { get; set; } |
|
} |
|
}
|
|
|