using System; namespace Zhaizj.Framework.Config { /// /// ÅäÖÃÖµµÄ½Ó¿Ú /// public interface ISettingValue { int Id { get; set; } String DataType { get; set; } String SettingValue { get; set; } void Update( String propertyName ); } }