mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-06-20 10:48:15 +08:00
13 lines
380 B
C#
13 lines
380 B
C#
using NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
namespace NetAdmin.Domain.Dto.Sys.VerifyCode;
|
|
|
|
/// <summary>
|
|
/// 请求:更新验证码
|
|
/// </summary>
|
|
public sealed record UpdateVerifyCodeReq : CreateVerifyCodeReq
|
|
{
|
|
/// <inheritdoc cref="IFieldVersion.Version" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Version { get; init; }
|
|
} |