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