mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 20:12:51 +08:00
13 lines
389 B
C#
13 lines
389 B
C#
using NetAdmin.Domain.DbMaps.Dependency.Fields;
|
|
|
|
namespace NetAdmin.Domain.Dto.Sys.VerifyCode;
|
|
|
|
/// <summary>
|
|
/// 请求:设置验证码状态
|
|
/// </summary>
|
|
public sealed record SetVerifyCodeStatusReq : CreateVerifyCodeReq
|
|
{
|
|
/// <inheritdoc cref="IFieldVersion.Version" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Version { get; init; }
|
|
} |