Created
August 30, 2012 02:54
-
-
Save jkuemerle/3521883 to your computer and use it in GitHub Desktop.
Credential DTO with encrypted property attributes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace DataAccess.DTO | |
| { | |
| [Aspects.EncryptedType] | |
| public class Credential | |
| { | |
| public string LoginName { get; set; } | |
| [Aspects.Encrypted] | |
| public string Password { get; set; } | |
| public string AccountNumber { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment