Files
tnb.server/common/Tnb.Common/Contracts/IEntity.cs
2023-03-13 15:00:34 +08:00

12 lines
237 B
C#

namespace JNPF.Common.Contracts;
/// <summary>
/// 实体类基类.
/// </summary>
public interface IEntity<TKey>
{
/// <summary>
/// 获取或设置 实体唯一标识,主键.
/// </summary>
TKey Id { get; set; }
}