25 lines
506 B
C#
25 lines
506 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace YLErp.DBModels
|
|
{
|
|
[Table("dic_for_translation")]
|
|
public class dicForTranslation
|
|
{
|
|
/// <summary>
|
|
/// 需翻译的字符串
|
|
/// </summary>
|
|
public string From { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区分键
|
|
/// </summary>
|
|
public string Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// 翻译结果
|
|
/// </summary>
|
|
public string To { get; set; }
|
|
|
|
}
|
|
}
|