crm.core/code/Crm.Core.Identity.Domain/Dto/DecryptDto.cs

26 lines
620 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}