mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-06-17 01:13:22 +08:00
15 lines
382 B
C#
15 lines
382 B
C#
using NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
namespace NetAdmin.Domain.Dto.Dependency;
|
|
|
|
/// <inheritdoc cref="DelReq{T}" />
|
|
public sealed record DelReq : DelReq<long>;
|
|
|
|
/// <summary>
|
|
/// 请求:通过编号删除
|
|
/// </summary>
|
|
public record DelReq<T> : DataAbstraction, IFieldPrimary<T>
|
|
{
|
|
/// <inheritdoc cref="IFieldPrimary{T}.Id" />
|
|
public T Id { get; init; }
|
|
} |