mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 12:02:51 +08:00
12 lines
237 B
C#
12 lines
237 B
C#
namespace NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
/// <summary>
|
|
/// 版本字段接口
|
|
/// </summary>
|
|
public interface IFieldVersion
|
|
{
|
|
/// <summary>
|
|
/// 数据版本
|
|
/// </summary>
|
|
long Version { get; init; }
|
|
} |