Files
lserp_cs_5.0/插件库/Zhaizj.Framework/ORM/Attribute/LongTextAttribute.cs
T
2026-07-10 15:25:05 +08:00

13 lines
271 B
C#

using System;
namespace Zhaizj.Framework.ORM {
/// <summary>
/// 长文本批注,标识此属性对应的数据列允许接受长文本字符串
/// </summary>
[Serializable, AttributeUsage( AttributeTargets.Property )]
public class LongTextAttribute : Attribute {
}
}