mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-12 15:59:30 +08:00
12 lines
233 B
C#
12 lines
233 B
C#
namespace NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
/// <summary>
|
|
/// 描述字段接口
|
|
/// </summary>
|
|
public interface IFieldSummary
|
|
{
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
string Summary { get; init; }
|
|
} |