2023-11-17 18:52:06 +08:00

12 lines
233 B
C#

namespace NetAdmin.Domain.DbMaps.Dependency.Fields;
/// <summary>
/// 描述字段接口
/// </summary>
public interface IFieldSummary
{
/// <summary>
/// 描述
/// </summary>
string Summary { get; init; }
}