Add English comments for JsonMap extension package.

This commit is contained in:
AlexLEWIS
2021-08-11 13:38:06 +08:00
parent a5b5af4024
commit 39ac2d8286
2 changed files with 10 additions and 13 deletions

View File

@ -1,13 +1,11 @@
using System;
using System.Linq;
// ReSharper disable once CheckNamespace
namespace FreeSql.DataAnnotations
{
/// <summary>
/// 当实体类属性为【对象】时以JSON形式映射存储
/// When the entity class property is <see cref="object"/>, map storage in JSON format. <br />
/// 当实体类属性为【对象】时,以 JSON 形式映射存储
/// </summary>
public class JsonMapAttribute : Attribute
{
}
}
public class JsonMapAttribute : Attribute { }
}