EncryptedAttribute.cs 240 B

1234567891011
  1. namespace OASystem.Domain.Attributes
  2. {
  3. /// <summary>
  4. /// Aes 加密/解密
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
  7. public class EncryptedAttribute : Attribute
  8. {
  9. }
  10. }