using System; namespace Zhaizj.Framework.ORM { /// /// count »؛´وإْ×¢ /// [Serializable] public class CacheCountAttribute : Attribute, ICacheAttribute { private String _targetPropertyName; public CacheCountAttribute( String targetPropertyName ) { _targetPropertyName = targetPropertyName; } public String TargetPropertyName { get { return _targetPropertyName; } } } }