mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-27 21:22:51 +08:00
12 lines
405 B
C#
12 lines
405 B
C#
using System;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace FreeSql.DataAnnotations
|
|
{
|
|
/// <summary>
|
|
/// When the entity class property is <see cref="object"/>, map storage in JSON format. <br />
|
|
/// 当实体类属性为【对象】时,以 JSON 形式映射存储
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class JsonMapAttribute : Attribute { }
|
|
} |