20 lines
443 B
C#
20 lines
443 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 EncryptDto
|
||
{
|
||
public int? Eid { get; set; }
|
||
|
||
[Required(ErrorMessage = "ip必填!")]
|
||
public string Ip { get; set; }
|
||
|
||
[Required(ErrorMessage = "需要加密的字段必填!")]
|
||
public string Content { get; set; }
|
||
}
|
||
}
|