26 lines
620 B
C#
26 lines
620 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Crm.Core.Identity.Domain.Dto
|
||
{
|
||
public class DecryptDto
|
||
{
|
||
public int? Eid { get; set; }
|
||
|
||
[Required(ErrorMessage = "ip必填!")]
|
||
public string? Ip { get; set; }
|
||
|
||
[Required(ErrorMessage = "需要解密的字段必填!")]
|
||
public string? Content { get; set; }
|
||
|
||
/// <summary>
|
||
/// 过期时间
|
||
/// </summary>
|
||
[Required(ErrorMessage = "过期时间必填!")]
|
||
public string? Duetime { get; set; }
|
||
}
|
||
}
|