14 lines
201 B
C#
14 lines
201 B
C#
using System;
|
|
namespace Zhaizj.Framework.ORM {
|
|
|
|
/// <summary>
|
|
/// 缓存批注的接口
|
|
/// </summary>
|
|
public interface ICacheAttribute {
|
|
|
|
String TargetPropertyName { get; }
|
|
}
|
|
|
|
}
|
|
|